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

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

.ad-notice {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.hero-editorial {
    background-color: #fff;
    padding: 60px 20px 40px;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-intro {
    font-size: 21px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.hero-editorial img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

.story-content {
    background-color: #fff;
    padding: 60px 20px;
}

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

.story-content p {
    margin-bottom: 28px;
    text-align: justify;
}

.story-content h2 {
    font-size: 36px;
    margin: 50px 0 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.inline-image-block {
    margin: 45px 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.image-caption {
    font-size: 15px;
    color: #777;
    font-style: italic;
    text-align: center;
    margin-bottom: 10px;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a1a1a;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #f0f0f0;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.services-section {
    background-color: #f5f5f5;
    padding: 70px 20px;
}

.section-intro {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    padding: 35px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.service-card p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.service-duration {
    font-size: 15px;
    color: #888;
    font-family: 'Arial', sans-serif;
    margin-bottom: 10px;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #2c2c2c;
    margin: 20px 0;
}

.btn-select {
    padding: 14px 35px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-select.selected {
    background-color: #4a7c59;
}

.form-section {
    background-color: #fff;
    padding: 70px 20px;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
}

.form-section > .content-narrow > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background-color: #fafafa;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    color: #666;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a1a1a;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.testimonials-section {
    background-color: #2c2c2c;
    color: #fff;
    padding: 70px 20px;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
    color: #fff;
}

.testimonial {
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #fff;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: #ccc;
    font-style: italic;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #666;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 25px 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: #ddd;
    font-family: 'Arial', sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #4a7c59;
    color: #fff;
}

.btn-accept:hover {
    background-color: #3d6a4a;
}

.btn-reject {
    background-color: #666;
    color: #fff;
}

.btn-reject:hover {
    background-color: #555;
}

.page-hero {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.page-intro {
    font-size: 19px;
    color: #555;
    line-height: 1.6;
}

.about-content {
    background-color: #fff;
    padding: 60px 20px;
}

.about-content img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    object-fit: cover;
    background-color: #e8e8e8;
}

.about-content h2 {
    font-size: 32px;
    margin: 45px 0 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.about-content p {
    margin-bottom: 25px;
    text-align: justify;
}

.about-image-grid {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.about-image-grid img {
    flex: 1;
    min-width: 280px;
    height: auto;
    margin: 0;
    object-fit: cover;
    background-color: #e8e8e8;
}

.services-detail {
    background-color: #fff;
    padding: 60px 20px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-detail-text {
    flex: 1;
    min-width: 300px;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.price-tag {
    font-size: 26px;
    font-weight: bold;
    color: #2c2c2c;
    margin: 15px 0;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

.services-faq {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.services-faq h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
}

.faq-item {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 3px solid #2c2c2c;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.contact-content {
    background-color: #fff;
    padding: 60px 20px;
}

.contact-info-block {
    margin-bottom: 50px;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 400;
}

.contact-detail p {
    color: #555;
    line-height: 1.6;
}

.email-display {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #2c2c2c;
}

.email-note,
.note {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

.contact-additional {
    margin-bottom: 50px;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-faq {
    margin-bottom: 30px;
}

.contact-faq h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 400;
}

.contact-faq p {
    color: #555;
    line-height: 1.6;
}

.contact-map-notice {
    background-color: #f5f5f5;
    padding: 25px;
    border-left: 3px solid #2c2c2c;
}

.contact-map-notice p {
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    background-color: #fff;
    padding: 80px 20px;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.thanks-intro {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    margin: 40px 0;
}

.selected-course-info {
    background-color: #f5f5f5;
    padding: 30px;
    border-left: 3px solid #4a7c59;
}

.selected-course-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 400;
}

.selected-course-info p {
    font-size: 18px;
    color: #2c2c2c;
}

.thanks-next-steps {
    text-align: left;
    margin: 40px 0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
    text-align: center;
}

.next-steps-list {
    list-style: none;
    counter-reset: step-counter;
    max-width: 600px;
    margin: 0 auto;
}

.next-steps-list li {
    counter-increment: step-counter;
    padding: 15px 15px 15px 50px;
    position: relative;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    color: #555;
}

.next-steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 15px;
    width: 25px;
    height: 25px;
    background-color: #2c2c2c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.thanks-info {
    background-color: #fff9e6;
    padding: 25px;
    margin: 40px 0;
    border-left: 3px solid #f0ad4e;
}

.thanks-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.legal-content {
    background-color: #fff;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.legal-updated,
.legal-intro {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin: 40px 0 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.legal-content h3 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: #2c2c2c;
    font-weight: 400;
}

.legal-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: #555;
}

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

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

    .hero-intro {
        font-size: 18px;
    }

    .story-content h2,
    .services-section h2,
    .form-section h2,
    .testimonials-section h2 {
        font-size: 28px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-image-grid {
        flex-direction: column;
    }
}