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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fefefe;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5a2d0a;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ad Notice */
.ad-notice {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Magazine Navigation */
.magazine-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    background-color: #fff;
    border-bottom: 2px solid #e0e0e0;
}

.nav-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-center {
    display: flex;
    gap: 35px;
}

.nav-center a {
    color: #2c2c2c;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-center a:hover {
    color: #8b4513;
}

.nav-right .nav-cta {
    background-color: #8b4513;
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nav-right .nav-cta:hover {
    background-color: #5a2d0a;
}

/* Hero Magazine Style */
.hero-magazine {
    padding: 80px 5% 60px;
    background-color: #f9f9f9;
}

.hero-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-column {
    flex: 1;
}

.hero-text-column h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.hero-meta {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    color: #888;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero-image-column {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

/* Editorial Intro */
.editorial-intro {
    padding: 100px 5%;
    background-color: #fff;
}

.narrow-column {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-column h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.narrow-column p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Magazine Grid Services */
.services-magazine-grid {
    padding: 80px 5%;
    background-color: #fafafa;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #666;
}

.magazine-three-col {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-mag {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-mag:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.service-image-container {
    background-color: #ddd;
    height: 260px;
    overflow: hidden;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.duration {
    font-size: 0.9rem;
    color: #888;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #8b4513;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #333;
}

/* Testimonials Offset */
.testimonials-offset {
    padding: 100px 5%;
    background-color: #fff;
}

.testimonial-container {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.testimonial-image {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
}

blockquote {
    margin-bottom: 35px;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

blockquote p {
    margin-bottom: 10px;
}

cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: #888;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Enrollment Form Section */
.enrollment-form-section {
    padding: 100px 5%;
    background-color: #f4f1ed;
}

.form-wrapper-magazine {
    max-width: 720px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.enrollment-form {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: Georgia, serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
}

.form-group input[readonly] {
    background-color: #f9f9f9;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #8b4513;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #5a2d0a;
}

/* Footer Magazine Style */
.footer-magazine {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 70px 5% 30px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 25px 5%;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #8b4513;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #8b4513;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #5a2d0a;
}

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

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

/* Page Hero Narrow */
.page-hero-narrow {
    padding: 80px 5% 60px;
    background-color: #f9f9f9;
    text-align: center;
}

.page-hero-narrow h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* About Content Magazine */
.about-content-magazine {
    padding: 80px 5%;
    background-color: #fff;
}

.about-two-col {
    display: flex;
    gap: 70px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.about-text-main {
    flex: 1.5;
}

.about-text-main h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
}

.about-text-main p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image-side {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 30px;
}

/* Values Section */
.values-section {
    padding: 80px 5%;
    background-color: #fafafa;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 35px;
    background-color: #fff;
    border-left: 4px solid #8b4513;
    border-radius: 4px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #8b4513;
}

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

/* Team Intro */
.team-intro {
    padding: 100px 5%;
    background-color: #fff;
}

.team-intro .narrow-column h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
}

.team-intro .narrow-column p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* CTA About */
.cta-about {
    padding: 100px 5%;
    background-color: #8b4513;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 1.2rem;
    color: #f4f1ed;
    margin-bottom: 35px;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #8b4513;
    border-radius: 6px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #f4f1ed;
    color: #5a2d0a;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 5%;
    background-color: #fff;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 80px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: 700;
}

.service-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.info-item {
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.info-item strong {
    color: #1a1a1a;
}

.service-price-block {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f4f1ed;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 0.95rem;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
}

.service-detail-image {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.featured-course {
    background-color: #fafafa;
    padding: 50px;
    border-radius: 12px;
    border: 3px solid #8b4513;
}

.course-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #8b4513;
    color: #fff;
    font-size: 0.85rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

/* Contact Info Layout */
.contact-info-layout {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-main-column {
    flex: 2;
}

.contact-main-column h2 {
    font-size: 2.4rem;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #8b4513;
}

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

.contact-note {
    margin-top: 50px;
    padding: 30px;
    background-color: #f4f1ed;
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-inline-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #8b4513;
    color: #fff;
    border-radius: 6px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-inline-cta:hover {
    background-color: #5a2d0a;
}

.contact-secondary-column {
    flex: 1;
}

.info-box {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.info-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Thanks Page */
.thanks-page-content {
    padding: 100px 5%;
    background-color: #f9f9f9;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    margin: 0 auto;
    stroke: #8b4513;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.thanks-container p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background-color: #f4f1ed;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background-color: #8b4513;
    color: #fff;
}

.btn-primary:hover {
    background-color: #5a2d0a;
}

.btn-secondary {
    background-color: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
}

.btn-secondary:hover {
    background-color: #8b4513;
    color: #fff;
}

/* Legal Content */
.legal-content {
    padding: 80px 5%;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.legal-intro {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 40px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #8b4513;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container h4 {
    font-size: 1.15rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 30px;
}

.legal-container li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-container a {
    color: #8b4513;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
}

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

.cookie-table th {
    background-color: #f4f1ed;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-split,
    .about-two-col,
    .testimonial-container,
    .service-detail-block {
        flex-direction: column;
    }

    .magazine-three-col {
        gap: 30px;
    }

    .service-card-mag {
        flex: 1 1 calc(50% - 15px);
    }

    .contact-info-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .magazine-nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nav-center {
        order: 3;
        width: 100%;
        justify-content: space-around;
        gap: 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .service-card-mag {
        flex: 1 1 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

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

    .enrollment-form {
        padding: 35px 25px;
    }

    .thanks-container {
        padding: 40px 30px;
    }

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

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