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

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --dark-color: #202124;
    --light-color: #f8f9fa;
    --gray-color: #5f6368;
    --border-color: #dadce0;
    --success-color: #4CAF50;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--secondary-color);
}

.main-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--gray-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

.hero-split {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
}

.cta-primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.split-layout,
.intro-split,
.problem-section,
.services-preview,
.values-split,
.numbers-split,
.testimonial-split,
.service-detail {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-text {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.split-text p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.split-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.split-text ul li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
}

.split-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-highlights li::before {
    content: "▸";
}

.split-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.trust-indicators {
    background-color: var(--light-color);
    padding: 4rem 2rem;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.approach-section {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.approach-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.approach-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.approach-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.approach-card {
    flex: 1;
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-card p {
    color: var(--gray-color);
}

.pricing-section {
    padding: 5rem 2rem;
    background-color: white;
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    flex: 1;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(26, 115, 232, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-desc {
    color: var(--gray-color);
    margin-bottom: 2rem;
    min-height: 3rem;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-color);
    color: var(--gray-color);
}

.cta-select {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-select:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
}

.additional-services {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-flex {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.service-box {
    flex: 1;
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-box p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.testimonial-split {
    background-color: var(--dark-color);
    color: white;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-text cite {
    display: block;
    margin-top: 2rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--border-color);
}

.testimonial-visual {
    flex: 1;
}

.cta-final {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cta-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.cta-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-wrapper p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-wrapper .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-wrapper .cta-primary:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
}

.form-section {
    background-color: white;
}

.split-form {
    flex: 1;
}

.main-form {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.main-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p {
    color: var(--border-color);
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--border-color);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(52, 168, 83, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #2d8e47;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(52, 168, 83, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background-color: #2d8e47;
}

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

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

.page-hero-simple {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.page-hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-simple p {
    font-size: 1.25rem;
    color: var(--gray-color);
}

.service-price-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0 1.5rem;
}

.additional-services-page {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.additional-services-page h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 300px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-price-card {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--gray-color);
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.process-section {
    padding: 5rem 2rem;
    background-color: white;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.process-timeline {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--gray-color);
}

.cta-services,
.cta-about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.cta-services .cta-wrapper,
.cta-about .cta-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.cta-services h2,
.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services .cta-primary,
.cta-about .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

.contact-section {
    background-color: white;
}

.contact-info {
    margin: 2rem 0;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.info-block p {
    color: var(--gray-color);
}

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

.response-time {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.map-section {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.map-note {
    color: var(--gray-color);
    margin-top: 1rem;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray-color);
}

.story-section {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-section {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.team-member {
    flex: 1;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.5rem;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 1.5rem;
}

.team-member p {
    color: var(--gray-color);
    margin: 1rem 1.5rem 1.5rem;
}

.numbers-split .split-stats {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.expertise-section {
    padding: 5rem 2rem;
    background-color: white;
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.expertise-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.expertise-card {
    flex: 1;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
}

.expertise-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expertise-card p {
    color: var(--gray-color);
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.service-info {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-box {
    flex: 1;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-box p {
    color: var(--gray-color);
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: white;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--gray-color);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    color: var(--gray-color);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--gray-color);
}

.legal-container ul li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

.cookie-table td {
    color: var(--gray-color);
}

@media (max-width: 1024px) {
    .hero-content,
    .split-layout,
    .intro-split,
    .problem-section,
    .services-preview,
    .values-split,
    .numbers-split,
    .testimonial-split,
    .service-detail {
        flex-direction: column;
        gap: 2rem;
    }

    .reverse {
        flex-direction: column;
    }

    .approach-grid,
    .pricing-grid,
    .services-flex,
    .team-grid,
    .expertise-grid,
    .process-timeline {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .split-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-text h1 {
        font-size: 2rem;
    }

    .trust-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

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

    .faq-item {
        flex: 1 1 100%;
    }

    .service-card {
        flex: 1 1 100%;
    }
}