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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 4px 12px;
    border-radius: 4px;
}

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

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: #d4e4eb;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.intro-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.insight-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
}

.insight-image {
    flex: 1;
    background-color: #c8d9df;
}

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

.insight-content {
    flex: 1;
    padding: 80px 60px;
}

.insight-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.insight-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.insight-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.problem-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.problem-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.problem-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.problem-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.services-reveal {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.services-reveal h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.section-intro {
    font-size: 20px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
}

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
}

.service-visual {
    flex: 1;
    background-color: #d4e4eb;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
}

.btn-select {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.science-section {
    padding: 100px 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.science-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.science-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.science-section a {
    color: var(--bg-white);
    text-decoration: underline;
}

.cta-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.cta-box {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: var(--bg-light);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #234a5f;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--bg-light);
}

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

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

.footer-col ul li a {
    color: var(--bg-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.references {
    list-style: decimal;
    padding-left: 20px;
}

.references li {
    margin-bottom: 8px;
    font-size: 13px;
}

.references a {
    color: var(--bg-light);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--bg-light);
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 3000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 200px;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-cookie:hover {
    background-color: #d35400;
}

.btn-cookie.btn-outline {
    background-color: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
}

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

.page-hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 100px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 100px 20px;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #d4e4eb;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.philosophy-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.principle-block {
    margin-bottom: 50px;
}

.principle-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.principle-block p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.method-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
}

.method-image {
    flex: 1;
    background-color: #c8d9df;
}

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

.method-content {
    flex: 1;
    padding: 80px 60px;
}

.method-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.method-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.services-detailed {
    padding: 60px 20px 100px;
}

.service-full {
    margin-bottom: 80px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-full.alternate {
    flex-direction: column-reverse;
}

.service-header {
    width: 100%;
    background-color: #d4e4eb;
}

.service-header img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.service-body {
    padding: 50px;
}

.service-body h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
}

.service-body p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-body h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.service-pricing {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

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

.faq-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-section {
    padding: 60px 20px 100px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 40px;
}

.info-block h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.info-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.info-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
    position: relative;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    background-color: #d4e4eb;
    object-fit: cover;
    display: block;
}

.contact-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.contact-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.contact-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.contact-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.expectations-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.expectations-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.expectation-step {
    margin-bottom: 40px;
}

.expectation-step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.expectation-step p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.alternative-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.alternative-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.alternative-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.alt-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.alt-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.alt-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.link-arrow:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.next-steps {
    list-style: decimal;
    padding-left: 25px;
}

.next-steps li {
    padding: 12px 0;
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.6;
}

.thanks-info {
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #234a5f;
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.while-waiting {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.while-waiting h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.waiting-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.waiting-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.waiting-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.waiting-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-page {
    padding: 80px 20px 100px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page strong {
    color: var(--text-dark);
}

@media (max-width: 968px) {
    .hero-split,
    .insight-split,
    .about-split,
    .method-split {
        flex-direction: column;
    }

    .hero-left,
    .insight-content,
    .about-content,
    .method-content {
        padding: 60px 40px;
    }

    .hero-right,
    .insight-image,
    .about-image,
    .method-image {
        min-height: 400px;
    }

    .service-item {
        flex-direction: column;
    }

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

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .problem-grid,
    .testimonials,
    .values-grid,
    .alternative-cards,
    .waiting-cards {
        flex-direction: column;
    }

    .cta-box {
        padding: 40px 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}