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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --gray-text: #666;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffc107;
}

.main-nav {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--secondary-color);
}

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

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--gray-text);
    max-width: 580px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.insight-section {
    padding: 100px 24px;
    background-color: var(--white);
}

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

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--primary-color);
    line-height: 1.3;
}

.insight-section > .container-narrow > p {
    font-size: 20px;
    margin-bottom: 50px;
    color: var(--gray-text);
    line-height: 1.7;
}

.split-insight {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 60px;
}

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

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

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

.insight-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #ddd;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 24px 20px;
    color: var(--gray-text);
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 24px 20px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 24px;
    background-color: var(--white);
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.form-container {
    flex: 1;
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    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: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.testimonial {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 16px;
}

.testimonial cite {
    font-style: normal;
    color: var(--gray-text);
    font-weight: 600;
    font-size: 15px;
}

.approach-section {
    padding: 100px 24px;
    background-color: var(--white);
}

.container-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

.approach-visual {
    flex: 1.2;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
}

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

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

.link-arrow {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
    font-size: 17px;
    transition: color 0.3s;
}

.link-arrow::after {
    content: ' →';
}

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

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 24px 24px;
}

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

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

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-column p,
.footer-column li {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--white);
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

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

.btn-accept {
    background-color: var(--success-color);
    color: var(--white);
}

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

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

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

.cookie-link {
    color: var(--white);
    text-decoration: underline;
    font-size: 14px;
    transition: opacity 0.3s;
}

.cookie-link:hover {
    opacity: 0.8;
}

.page-hero {
    background-color: var(--light-bg);
    padding: 80px 24px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

.lead {
    font-size: 20px;
    color: var(--gray-text);
    line-height: 1.7;
}

.story-section {
    padding: 100px 24px;
    background-color: var(--white);
}

.container-split-reverse {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    flex-direction: row-reverse;
}

.story-image,
.story-content {
    flex: 1;
}

.story-image {
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

.methodology-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.method-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.method-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.method-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
}

.team-section,
.values-section {
    padding: 100px 24px;
}

.team-section {
    background-color: var(--white);
}

.values-section {
    background-color: var(--light-bg);
}

.team-section h2,
.values-section h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.team-section p,
.values-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.container-asymmetric-reverse {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.values-content {
    flex: 1;
}

.values-visual {
    flex: 1;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.values-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.principles-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.principles-list li {
    font-size: 17px;
    line-height: 1.7;
    padding-left: 28px;
    position: relative;
}

.principles-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.cta-section-alt {
    padding: 80px 24px;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section-alt p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

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

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

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    flex: 1;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-intro {
    font-size: 19px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    padding: 12px 0 12px 32px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.select-service-inline {
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service-inline:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.comparison-section {
    padding: 80px 24px;
    background-color: var(--light-bg);
    text-align: center;
}

.comparison-section h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.comparison-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-section {
    padding: 80px 24px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
}

.location-section,
.faq-section {
    padding: 80px 24px;
}

.location-section {
    background-color: var(--light-bg);
}

.faq-section {
    background-color: var(--white);
}

.location-section h2,
.faq-section h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.location-section p,
.faq-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    background-color: var(--light-bg);
    padding: 32px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

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

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

.legal-page {
    padding: 80px 24px;
    background-color: var(--white);
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.updated {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.legal-page ul {
    margin: 20px 0;
    padding-left: 32px;
}

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

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-page a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 14px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    font-size: 15px;
    color: var(--text-color);
}

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

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

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 50px;
}

.selected-service {
    font-size: 18px;
    color: var(--text-color);
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
}

.next-steps {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.steps-list li {
    counter-increment: step-counter;
    font-size: 17px;
    line-height: 1.7;
    padding: 16px 0 16px 48px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.steps-list li:last-child {
    border-bottom: none;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 14px;
    width: 32px;
    height: 32px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-outline {
    padding: 14px 32px;
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .hero-split,
    .split-insight,
    .container-split,
    .container-split-reverse,
    .container-asymmetric,
    .container-asymmetric-reverse,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

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

    .hero-content {
        padding: 60px 32px;
    }

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li a {
        display: block;
        padding: 16px 24px;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .method-grid {
        flex-direction: column;
    }

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

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}