body {
    background-color: black;
    color: white;
    font-family: 'Lora', serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.2;
}

header {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    z-index: 1000;
    overflow: hidden;
}

#logo {
    width: 100%;
    max-width: 800px;
    height: auto;
    transition: max-width 0.1s ease;
}






main {
    padding-top: 50vh;
}

.section {
    padding: 50px 20px;
    /* Remove border-top for cleaner look */
}

    .section.white-section {
        position: relative;
        background: none;
        color: black;
        overflow: hidden;
        padding: 30px 20px; /* adjust for visual centering */
    }

        .section.white-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 140%;
            height: 140%;
            background: white;
            transform: translate(-50%, -50%) rotate(20deg);
            z-index: -1;
        }

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.section h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.2;
}

    .section h2::after {
        display: none; /* remove underline accent for cleaner look */
    }

.section p {
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0 auto;
}

a {
    color: inherit;
    text-decoration: underline;
    word-break: break-word;
}

    a:hover {
        color: #555;
    }


footer {
    margin: 40px 0 20px;
    font-size: 0.9em;
    color: #aaaaaa;
    padding: 0 15px;
}

/* Mobile enhancements */
@media (max-width: 600px) {
    #logo {
        width: 70%;
        max-width: 250px;
    }


    .section {
        padding: 40px 15px;
    }

        .section h2 {
            font-size: 1.5em;
        }

        .section p {
            font-size: 1em;
        }
}
