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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 10000;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2980b9;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.editorial-container {
    max-width: 100%;
}

.article-hero {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-text {
    max-width: 800px;
    margin: -120px auto 0;
    position: relative;
    background-color: #ffffff;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    line-height: 1.6;
}

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

.intro-narrative {
    padding: 80px 0;
}

.opening-statement {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #34495e;
}

.intro-narrative p {
    font-size: 18px;
    margin-bottom: 25px;
}

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

.text-link {
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #2980b9;
}

.insight-block {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.insight-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.section-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
    background-color: #ecf0f1;
    object-fit: cover;
}

.insight-block p {
    font-size: 18px;
    margin-bottom: 25px;
}

blockquote {
    margin: 50px 0;
    padding: 30px 40px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
}

cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 16px;
    color: #7f8c8d;
}

.problem-awareness {
    padding: 80px 0;
}

.problem-awareness h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #2c3e50;
}

.problem-awareness p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.services-showcase {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-showcase h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    font-size: 18px;
    margin-bottom: 50px;
    color: #7f8c8d;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555555;
}

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

.price {
    font-size: 28px;
    font-weight: bold;
    color: #3498db;
}

.duration {
    font-size: 16px;
    color: #7f8c8d;
}

.testimonial-inline {
    padding: 80px 0;
}

.featured-testimonial {
    margin: 0;
    padding: 50px;
    background-color: #2c3e50;
    color: #ffffff;
    border-left: none;
    text-align: center;
    border-radius: 4px;
}

.featured-testimonial cite {
    color: #bdc3c7;
}

.application-context {
    padding: 80px 0;
}

.application-context h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #2c3e50;
}

.application-context p {
    font-size: 18px;
    margin-bottom: 25px;
}

.enrollment-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.enrollment-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.enrollment-section > .narrow-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.trust-footer {
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #bdc3c7;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #7f8c8d;
}

.thanks-content .selected-service {
    font-size: 20px;
    color: #3498db;
    font-weight: bold;
    margin: 30px 0;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

.page-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.page-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.page-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #34495e;
}

.page-container p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-container ul,
.page-container ol {
    margin: 20px 0 20px 40px;
    font-size: 17px;
    line-height: 1.7;
}

.page-container ul li,
.page-container ol li {
    margin-bottom: 10px;
}

.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .hero-text {
        margin-top: -80px;
        padding: 40px 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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

    .opening-statement {
        font-size: 20px;
    }

    .insight-block h2,
    .problem-awareness h2,
    .services-showcase h2,
    .application-context h2,
    .enrollment-section h2 {
        font-size: 28px;
    }

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

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

    .contact-form {
        padding: 30px;
    }
}