/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Slabo 27px', serif;
    line-height: 1.8;
    color: #5a5a5a;
    background-color: #e8e8e8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background-color: #e8e8e8;
    padding: 60px 0 40px 0;
}

.header-content {
    margin-bottom: 0;
}

header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
}

.subtitle {
    font-family: 'Slabo 27px', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #5a5a5a;
    margin-bottom: 0;
}

/* Navigation */
nav {
    display: none;
}

/* Main content */
main {
    background-color: #e8e8e8;
    padding: 40px 0;
}

.main-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.section {
    flex: 1;
    margin-bottom: 0;
}

.section:last-child {
    margin-bottom: 0;
}

.section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    text-transform: none;
    letter-spacing: 0;
}

.content-text {
    max-width: 800px;
}

.content-text p {
    font-family: 'Slabo 27px', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.content-text a {
    color: #5a5a5a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.content-text a:hover {
    opacity: 0.7;
}

/* Footer */
footer {
    background-color: #e8e8e8;
    padding: 40px 0;
    border-top: 1px solid #d0d0d0;
}

footer p {
    font-family: 'Slabo 27px', serif;
    font-size: 0.9rem;
    color: #5a5a5a;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .main-content {
        flex-direction: column;
        gap: 40px;
    }

    header {
        padding: 40px 0 30px 0;
    }

    header h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .section {
        margin-bottom: 40px;
    }

    .section h2 {
        font-size: 1.3rem;
    }

    main {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .section h2 {
        font-size: 1.2rem;
    }

    .content-text p {
        font-size: 0.95rem;
    }
}
