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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a5568;
}

.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.hero-subtext {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    background: #2d3748;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1a202c;
}

.hero-image {
    width: 100%;
    background: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-block {
    background: #f7fafc;
    padding: 100px 20px;
}

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

.content-narrow h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 20px;
}

.problem-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.problem-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-item {
    flex: 1;
}

.problem-item h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.problem-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.problem-image {
    flex: 1;
    background: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
}

.problem-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-section {
    background: #2d3748;
    padding: 100px 20px;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-visual {
    flex: 1;
    background: #4a5568;
    border-radius: 8px;
    overflow: hidden;
}

.approach-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-content {
    flex: 1;
    color: #ffffff;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.approach-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e2e8f0;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #e2e8f0;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #cbd5e0;
}

.testimonial-inline {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.testimonial-content blockquote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 20px;
    padding: 40px;
    background: #f7fafc;
    border-left: 4px solid #2d3748;
}

.testimonial-content cite {
    font-size: 16px;
    color: #718096;
    font-style: normal;
    display: block;
    padding-left: 40px;
}

.programs-section {
    background: #ffffff;
    padding: 100px 20px;
}

.section-header-centered {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 19px;
    color: #4a5568;
}

.programs-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.program-card {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.program-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.program-image {
    flex: 0 0 400px;
    background: #f7fafc;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.program-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.program-info > p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.program-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.program-includes li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #2d3748;
    font-size: 16px;
}

.program-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.program-price {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    margin-top: auto;
}

.select-service {
    background: #2d3748;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background: #1a202c;
}

.methodology-section {
    background: #f7fafc;
    padding: 100px 20px;
}

.methodology-content {
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.methodology-steps {
    display: flex;
    gap: 40px;
}

.step {
    flex: 1;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #cbd5e0;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.trust-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.trust-grid {
    display: flex;
    gap: 50px;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.form-section {
    background: #2d3748;
    padding: 100px 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background: #2d3748;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

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

.disclaimer-section {
    background: #f7fafc;
    padding: 60px 20px;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-left: 4px solid #cbd5e0;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
}

.main-footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 60px 20px 30px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    padding: 25px 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: #e2e8f0;
    font-size: 15px;
    margin: 0;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #48bb78;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #38a169;
}

.cookie-reject {
    background: #4a5568;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #2d3748;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 20px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-info {
    background: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-info p {
    margin-bottom: 10px;
}

.thanks-info strong {
    color: #2d3748;
}

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

    .nav-links {
        gap: 15px;
    }

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

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

    .problem-grid {
        flex-direction: column;
    }

    .approach-container {
        flex-direction: column;
    }

    .program-card {
        flex-direction: column;
    }

    .program-image {
        flex: 0 0 300px;
    }

    .methodology-steps {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
    }
}
