/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c1810;
    --secondary-color: #6b4423;
    --accent-color: #8b6f47;
    --text-color: #333333;
    --text-light: #666666;
    --background: #ffffff;
    --background-alt: #f8f6f3;
    --border-color: #e0ddd8;
    --error-color: #c53030;
    --success-color: #2f855a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--accent-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--background);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--background);
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-bottom-color: var(--accent-color);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--background);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--background);
    padding: 5rem 0;
    text-align: center;
}

.hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.hero h1 {
    color: var(--background);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Buttons */
.cta-button,
.secondary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--background);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.secondary-button {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.secondary-button:hover {
    background-color: var(--secondary-color);
    color: var(--background);
}

/* Sections */
section {
    padding: 4rem 0;
}

.value-proposition,
.curriculum-approach,
.transparency,
.what-to-expect {
    background-color: var(--background-alt);
}

/* Page Header */
.page-header {
    background-color: var(--background-alt);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    margin-bottom: 1rem;
}

.header-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 8px;
}

.section-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 8px;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
}

/* Grid Layouts */
.audience-grid,
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.audience-card,
.benefit-card {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover,
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.audience-card h3,
.benefit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Lists */
.benefits-list,
.module-topics,
.certificate-components,
.value-contexts,
.comparison-points,
.expect-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefits-list li,
.module-topics li,
.certificate-components li,
.value-contexts li,
.comparison-points li,
.expect-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.benefits-list li::before,
.module-topics li::before,
.certificate-components li::before,
.value-contexts li::before,
.comparison-points li::before,
.expect-list li::before {
    content: "•";
    color: var(--accent-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Curriculum Modules */
.curriculum-module {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.curriculum-module:last-child {
    border-bottom: none;
}

.curriculum-module h2 {
    color: var(--secondary-color);
}

.module-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 8px;
}

/* Instructor Section */
.instructor-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.instructor-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.instructor-text h2 {
    margin-top: 0;
}

/* FAQ Images */
.faq-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 8px;
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

.about-main {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.content-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 8px;
}

.credentials {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-top: 3rem;
}

.credentials h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.related-links {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: 8px;
}

.related-links h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.related-links ul {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.related-links li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Who This Is For and Philosophy Pages */
.who-content,
.philosophy-content {
    padding: 4rem 0;
}

.who-intro,
.philosophy-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.who-section,
.philosophy-section {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.who-section:last-of-type,
.philosophy-section:last-of-type {
    border-bottom: none;
}

.next-steps-section,
.philosophy-conclusion {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: 8px;
}

/* Legal Page */
.legal-content {
    padding: 4rem 0;
}

.legal-section {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.important-statement {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    background-color: var(--background-alt);
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

/* Pricing Page */
.pricing-content {
    padding: 4rem 0;
}

.pricing-box {
    max-width: 500px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.price-amount {
    color: var(--background);
    line-height: 1;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    vertical-align: super;
    font-weight: 600;
}

.amount {
    font-size: 5rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.period {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.price-description {
    color: var(--background);
    font-size: 1.2rem;
    margin: 0;
}

.pricing-section {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-section:last-of-type {
    border-bottom: none;
}

.pricing-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.included-list,
.clarity-list {
    list-style: none;
    margin-top: 1.5rem;
}

.included-list li,
.clarity-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.included-list li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.clarity-list li::before {
    content: "•";
    color: var(--accent-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.certificate-notice {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: 8px;
    border: none;
}

.enrollment-cta {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--background-alt);
    border-radius: 12px;
}

.enrollment-cta h2 {
    margin-bottom: 1rem;
}

.enrollment-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* CTA Groups */
.program-cta,
.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Disclaimer */
.disclaimer-section {
    background-color: var(--background-alt);
    padding: 3rem 0;
}

.important-notice {
    background-color: var(--background);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    border-radius: 4px;
}

.important-notice h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.disclaimer-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* FAQ */
.faq-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.faq-item ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: 8px;
}

.contact-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-form-wrapper {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.error-message {
    display: block;
    color: var(--error-color);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.success-message {
    background-color: #f0fdf4;
    border: 1px solid var(--success-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.success-message h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

/* Final CTA */
.final-cta,
.next-steps,
.still-have-questions {
    text-align: center;
    padding: 4rem 0;
}

.final-cta h2,
.next-steps h2,
.still-have-questions h2 {
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--background);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--background);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    opacity: 0.9;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.site-footer p {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

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

    .hero-image {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .instructor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .instructor-photo {
        max-width: 300px;
        margin: 0 auto;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
        border-top: 1px solid var(--accent-color);
    }

    .nav-menu li {
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu a {
        display: block;
        padding: 0;
    }

    .audience-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

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

    .program-cta,
    .cta-group {
        flex-direction: column;
    }

    .cta-button,
    .secondary-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero {
        padding: 3rem 0;
    }

    section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 15px;
    }
}
