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

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-minimal {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 6rem 3rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto 4rem;
    width: 100%;
}

.hero-minimal h1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    line-height: 1.7;
}

.hero-image-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 500px;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.intro-spacing {
    padding: 8rem 3rem;
}

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

.narrow-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.narrow-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.large-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.insight-block {
    padding: 6rem 3rem;
    background: #f9f9f9;
}

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

.insight-content h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.insight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.citation:hover {
    text-decoration: underline;
}

.visual-break {
    padding: 4rem 3rem;
}

.dual-images {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.image-block {
    flex: 1;
    height: 600px;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.program-preview {
    padding: 8rem 3rem;
}

.program-preview h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.program-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.program-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    padding: 3rem 2rem;
    background: #fafafa;
    border: 1px solid #e5e5e5;
}

.program-card h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.program-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.program-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
}

.testimonial-section {
    padding: 6rem 3rem;
    background: #1a1a1a;
    color: #fff;
}

.testimonial-section blockquote {
    margin: 0;
}

.testimonial-section p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-section cite {
    font-size: 1rem;
    font-style: normal;
    color: #999;
}

.application-section {
    padding: 8rem 3rem;
}

.application-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.application-content > p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #555;
}

.application-form {
    max-width: 600px;
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    background: #fff;
    font-family: inherit;
}

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

.submit-btn {
    padding: 1.25rem 3rem;
    font-size: 1rem;
    font-weight: 500;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

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

.science-section {
    padding: 6rem 3rem;
    background: #f9f9f9;
}

.science-section h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.science-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.disclaimer-section {
    padding: 4rem 3rem;
    background: #f5f5f5;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
}

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

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

.footer-section h5 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    color: #999;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.references-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.75rem;
    color: #999;
    font-size: 0.9rem;
}

.references-list a {
    color: #6b9bd1;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #333;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

.cookie-btn.accept {
    background: #1a1a1a;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #333;
}

.cookie-btn.reject {
    background: #f5f5f5;
    color: #333;
}

.cookie-btn.reject:hover {
    background: #e5e5e5;
}

.cookie-actions a {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-actions a:hover {
    text-decoration: underline;
}

.page-hero {
    margin-top: 80px;
    padding: 6rem 3rem 3rem;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-top: 1rem;
}

.about-intro {
    padding: 6rem 3rem;
}

.philosophy-section {
    padding: 6rem 3rem;
    background: #f9f9f9;
}

.philosophy-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.philosophy-text {
    flex: 1.5;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.philosophy-image {
    flex: 1;
    height: 700px;
    background-color: #e5e5e5;
    overflow: hidden;
}

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

.methodology-section {
    padding: 6rem 3rem;
}

.methodology-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.instructor-section {
    padding: 6rem 3rem;
    background: #1a1a1a;
    color: #fff;
}

.instructor-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.instructor-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.image-feature {
    padding: 0;
}

.feature-image-container {
    width: 100%;
    height: 600px;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.values-section {
    padding: 6rem 3rem;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #333;
}

.values-list li::before {
    content: '—';
    position: absolute;
    left: 0;
}

.cta-about {
    padding: 6rem 3rem;
    background: #f9f9f9;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-about p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-link {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1rem;
    font-weight: 500;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

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

.cta-link.secondary {
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #ddd;
}

.cta-link.secondary:hover {
    background: #f5f5f5;
}

.services-detail {
    padding: 4rem 3rem;
}

.service-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    height: 500px;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    display: block;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.service-features {
    list-style: none;
    margin-top: 2rem;
}

.service-features li {
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.enrollment-section {
    padding: 6rem 3rem;
    background: #f9f9f9;
}

.enrollment-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.enrollment-section > p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #555;
}

.contact-content {
    padding: 4rem 3rem;
}

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

.contact-info-block h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-address,
.contact-email,
.contact-hours {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.contact-email {
    color: #666;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.contact-map {
    padding: 0;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional {
    padding: 6rem 3rem;
}

.contact-additional h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.contact-additional p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.thanks-section {
    margin-top: 80px;
    padding: 8rem 3rem;
    text-align: center;
}

.thanks-section h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.thanks-message {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #333;
}

.thanks-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.program-selected {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 2rem 0;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.next-steps {
    padding: 6rem 3rem;
    background: #f9f9f9;
}

.next-steps h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.steps-grid {
    display: flex;
    gap: 2rem;
}

.step-item {
    flex: 1;
    padding: 2rem;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 3rem 6rem;
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.update-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin: 2.5rem 0 1.5rem;
    letter-spacing: -0.01em;
}

.legal-page h3 {
    font-size: 1.35rem;
    font-weight: 400;
    margin: 2rem 0 1rem;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.legal-page ul,
.legal-page ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #444;
}

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background: #f5f5f5;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .hero-minimal h1 {
        font-size: 4rem;
    }

    .dual-images {
        flex-direction: column;
    }

    .program-card {
        flex: 1 1 calc(50% - 2rem);
    }

    .philosophy-content {
        flex-direction: column;
    }

    .philosophy-image {
        width: 100%;
        height: 500px;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

    .steps-grid {
        flex-wrap: wrap;
    }

    .step-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-minimal {
        padding: 4rem 1.5rem;
    }

    .hero-minimal h1 {
        font-size: 3rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .program-card {
        flex: 1 1 100%;
    }

    .step-item {
        flex: 1 1 100%;
    }

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

    .thanks-section h1 {
        font-size: 2.5rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}