* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #1a1a1a;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 2rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #fff;
    color: #2c2c2c;
}

.btn-accept:hover {
    background: #e0e0e0;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    padding: 3rem 2rem;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: none;
    color: #1a1a1a;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
    padding-left: 3rem;
    border-left: 1px solid #e0e0e0;
}

.hero-minimal {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem;
    background: #fff;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.cta-primary:hover {
    background: #333;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.08;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-statement {
    padding: 8rem 2rem;
    background: #f5f5f5;
}

.content-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.large-text {
    font-size: 2rem;
    line-height: 1.6;
    text-align: center;
    color: #2c2c2c;
}

.services-showcase {
    padding: 10rem 2rem;
    background: #fff;
}

.section-header-minimal {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header-minimal h2 {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.service-grid-minimal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-card {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #f5f5f5;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-details p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.select-service {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.select-service:hover {
    background: #1a1a1a;
    color: #fff;
}

.enrollment-form-section {
    padding: 10rem 2rem;
    background: #f5f5f5;
}

.form-container-minimal {
    max-width: 600px;
    margin: 0 auto;
}

.form-container-minimal h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.minimal-form input,
.minimal-form select {
    padding: 1.5rem;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

.minimal-form input:focus,
.minimal-form select:focus {
    outline: none;
    border-bottom-color: #1a1a1a;
}

.submit-btn {
    padding: 1.25rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    margin-top: 2rem;
}

.submit-btn:hover {
    background: #333;
}

.values-section {
    padding: 8rem 2rem;
    background: #fff;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
}

.values-section p {
    font-size: 1.25rem;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 6rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.875rem;
}

.about-hero {
    padding: 8rem 2rem 6rem;
    background: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.about-section {
    margin-bottom: 6rem;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-section p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    margin: 4rem 0;
    background: #f5f5f5;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-page {
    padding: 8rem 2rem;
    background: #fff;
}

.services-page h1 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 6rem;
    font-weight: 400;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    padding: 4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-item p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-item .price {
    margin-top: 2rem;
}

.contact-page {
    padding: 8rem 2rem;
    background: #fff;
}

.contact-page h1 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 6rem;
    font-weight: 400;
}

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

.contact-info {
    margin-bottom: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-info p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1rem;
}

.thanks-page {
    padding: 10rem 2rem;
    text-align: center;
    background: #fff;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.thanks-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.legal-page {
    padding: 8rem 2rem;
    background: #fff;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.legal-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .ad-disclosure {
        padding-left: 0;
        border-left: none;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .section-header-minimal h2 {
        font-size: 2rem;
    }

    .large-text {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-hero h1,
    .services-page h1,
    .contact-page h1 {
        font-size: 2.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}