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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    font-size: 16px;
}

.main-nav {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.main-nav.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    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: 35px;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.hero-text {
    max-width: 580px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.15;
    color: var(--bg-white);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    background: var(--bg-light);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    width: 85%;
    height: 75%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.cta-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

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

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

.cta-text {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-text:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.trust-indicators {
    background: var(--secondary-color);
    padding: 60px 20px;
}

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

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    text-align: center;
    color: var(--bg-white);
}

.trust-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

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

.split-layout {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-visual-left,
.split-visual-right {
    flex: 1;
    padding: 40px;
}

.split-content-left,
.split-content-right {
    flex: 1;
    padding: 40px 60px;
}

.section-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.split-content-right h2,
.split-content-left h2 {
    font-size: 38px;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.split-content-right p,
.split-content-left p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

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

.section-title-center {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

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

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-white);
    padding: 32px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    gap: 40px;
}

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

.service-info {
    flex: 2;
}

.service-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.service-price {
    flex: 1;
    text-align: right;
}

.price {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.testimonials-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.container-narrow h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

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

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

.how-it-works {
    padding: 100px 0;
    background: var(--bg-light);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 60px;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

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

.form-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 48px;
}

.contact-form {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
}

.full-width {
    width: 100%;
}

.final-cta {
    padding: 100px 0;
    background: var(--secondary-color);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.main-footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

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

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-column p,
.footer-column li {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 24px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--accent-color);
    color: var(--bg-white);
}

.cookie-accept:hover {
    background: #d97706;
}

.cookie-reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: var(--bg-white);
}

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.header-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.services-detailed {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-detail-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-detail-card.highlight {
    border: 2px solid var(--accent-color);
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

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

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 24px;
}

.service-checklist {
    list-style: none;
    padding: 0;
}

.service-checklist li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

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

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

.price-box {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.price-box.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.price-box.featured .price-large {
    color: var(--bg-white);
}

.price-box.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price-large {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-box p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.services-cta {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.about-story {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-values {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

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

.about-experience {
    padding: 100px 0;
    background: var(--bg-white);
}

.large-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.about-approach {
    padding: 100px 0;
    background: var(--bg-light);
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.approach-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.about-stats {
    padding: 100px 0;
    background: var(--secondary-color);
}

.about-stats h2 {
    color: var(--bg-white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    color: var(--bg-white);
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.about-cta {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.about-cta h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.about-cta p {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.contact-content {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-dark);
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-visit {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-visit h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

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

.contact-faq {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

.contact-cta {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.thanks-section {
    padding: 120px 0;
    background: var(--bg-light);
}

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

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

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

.thanks-details {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 48px;
}

.service-selected {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.thanks-next {
    margin-bottom: 48px;
}

.thanks-next h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
}

.step-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 40px;
}

.next-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

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

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

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

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 12px;
}

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

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 8px;
}

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

.legal-page a:hover {
    text-decoration: underline;
}

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

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

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

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

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

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

    .hero-visual {
        min-height: 400px;
    }

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

    .split-layout.reverse {
        flex-direction: column;
    }

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

    .price-box {
        position: static;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 16px;
    }

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

    .nav-toggle {
        display: block;
    }

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

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

    .section-title-center,
    .page-header h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .split-content-right h2,
    .split-content-left h2 {
        font-size: 28px;
    }

    .service-card-split {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .service-price {
        text-align: center;
    }

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

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

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

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

    .stats-grid,
    .trust-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }

    .split-content-left,
    .split-content-right {
        padding: 40px 20px;
    }

    .contact-form {
        padding: 32px 24px;
    }
}