:root {
    --primary: #3d4428;
    --secondary: #c9b8a8;
    --light-gray: #f5f5f5;
    --text: #2d2d2d;
    --border: #e8e8e8;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background-color: #ffffff;
    line-height: 1.6;
}

.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary) !important;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text) !important;
    font-size: 14px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

.hero {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(61, 68, 40, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: white;
    transform: scale(1.02);
}

.section-spacer {
    padding: 80px 0;
}

.section-spacer h2 {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
}

.bg-light {
    background-color: var(--light-gray);
}

.levels-grid,
.thoughts-grid {
    display: grid;
    gap: 40px;
}

.level-card,
.thought-card,
.topic-mini,
.testimonial-card {
    background-color: var(--light-gray);
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.level-card h3,
.topic-mini h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary);
}

.level-card p,
.thought-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

.thoughts-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.thought-card p {
    font-size: 14px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.topic-mini {
    padding: 28px;
    text-align: left;
}

.topic-mini h4 {
    font-size: 18px;
    margin-bottom: 0;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
}

.section-cta {
    margin-top: 40px;
}

.section-cta .btn {
    margin: 0 8px;
}

.footer {
    background-color: var(--light-gray);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary);
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: #999;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--light-gray);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.cookie-content p {
    font-size: 14px;
    color: var(--text);
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 16px !important;
    font-size: 12px !important;
}

@media (max-width: 768px) {
    .hero {
        height: 350px;
        margin-bottom: 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-spacer {
        padding: 60px 0;
    }

    .section-spacer h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .level-card,
    .thought-card,
    .topic-mini,
    .testimonial-card {
        padding: 28px;
    }

    .level-card h3 {
        font-size: 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-sm {
        width: 100% !important;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 8px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }
}

.concepts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.concept-card {
    background-color: var(--light-gray);
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.concept-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary);
}

.concept-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.program-card {
    background-color: var(--light-gray);
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.program-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

.program-card h3 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.program-card h3 a:hover {
    color: var(--secondary);
}

.program-card p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text);
}

.program-card.disclaimer {
    border-left: 4px solid var(--secondary);
}

.program-card.disclaimer .notice {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.program-card.disclaimer .notice a {
    color: var(--primary);
    text-decoration: none;
}

.program-details {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.detail-item {
    border-left: 4px solid var(--secondary);
    padding-left: 24px;
}

.detail-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.detail-item p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

.detail-item a {
    color: var(--primary);
    text-decoration: none;
}

.detail-item a:hover {
    text-decoration: underline;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.info-item {
    border-left: 4px solid var(--secondary);
    padding-left: 24px;
}

.info-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.info-item p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
}

.info-item a {
    color: var(--primary);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin-top: 40px;
}

.contact-form .form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 14px;
}

.contact-form .form-control {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text);
    background-color: white;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(61, 68, 40, 0.1);
}

.contact-form .form-check-label {
    font-size: 14px;
    color: var(--text);
}

.contact-form .form-check-label a {
    color: var(--primary);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}
