body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 2rem;
    color: #333;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.container img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.content {
    flex: 1;
}

h2 {
    color: #1e97e7;
    margin-top: 0;
}

.btn {
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #155fc3;
    text-decoration: none;
    color: white;
}

a {
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #155fc3;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1rem;
    box-sizing: border-box;
}

.lightbox.hidden {
    display: none;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img:first-child {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.lightbox-close {
    position: absolute;
    top: 1.4rem;       /* Increased padding from top */
    right: 1.4rem;     /* Increased padding from right */
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.site-header {
    display: flex;
    align-items: center;
    padding: 0rem 1rem;
    background-color: transparent;
    box-sizing: border-box;
}

.logo-link {
    display: inline-block;
}

.site-logo {
    height: 40px;
    width: auto;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }

    .container {
        background: #1e1e1e;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    h2 {
        color: #6cb8f7;
    }

    .btn {
        background-color: #2791e7;
    }

    .btn:hover {
        background-color: #1c54b2;
        text-decoration: none;
    }

    a {
        color: #6cb8f7;
    }

        .lightbox-content {
        background: #1e1e1e;
    }
}

@media (max-width: 600px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .container img {
        width: 100%;
        height: auto;
        max-height: 300px;
    }

    .site-header {
        justify-content: center;
        padding: 1rem;
    }

    .site-logo {
        height: 40px;
    }
}
