* {
    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: #ddd;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

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

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

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 80px 0;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-right img,
.split-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-split {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 100px 0;
}

.hero-split h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-split .lead-text {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 12px;
}

.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover,
.cta-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.cta-secondary:hover {
    background: var(--secondary-color);
    color: #fff;
}

.cta-large {
    padding: 18px 48px;
    font-size: 18px;
}

.intro-section,
.awareness-section,
.expertise-section {
    padding: 80px 0;
}

.intro-section h2,
.awareness-section h2,
.expertise-section h2,
section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-section p,
.awareness-section p,
.expertise-section p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.link-arrow:hover {
    transform: translateX(5px);
}

.stats-section {
    background: var(--primary-color);
    color: #fff;
    padding: 80px 0;
}

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

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

.stat-item h3 {
    font-size: 48px;
    color: var(--warning-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

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

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

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

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
    position: relative;
}

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

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

.btn-select-service {
    display: inline-block;
    padding: 10px 24px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #2980b9;
}

.link-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.trust-section {
    padding: 80px 0;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    flex: 1;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial .quote {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

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

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

.approach-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.approach-step {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.expertise-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.highlight-item {
    flex: 1;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 6px;
}

.highlight-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.highlight-item span {
    font-size: 14px;
    color: #666;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    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);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
}

.btn-submit {
    padding: 14px 32px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
}

.final-cta {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 15px;
}

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

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

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

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-badge.popular {
    background: var(--warning-color);
}

.service-badge.urgent {
    background: var(--accent-color);
}

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

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin: 20px 0;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

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

.service-duration {
    font-style: italic;
    color: #666;
    margin: 20px 0;
}

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

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.comparison-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.comparison-table .highlighted-row {
    background: #e8f4f8;
}

.cta-section {
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.story-section {
    padding: 80px 0;
}

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

.mission-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.mission-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.values-section {
    padding: 80px 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.expertise-section {
    padding: 80px 0;
}

.expertise-areas {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.expertise-area {
    flex: 1;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.expertise-area h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.expertise-area ul {
    list-style: none;
}

.expertise-area ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

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

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

.certifications-list {
    list-style: none;
    margin-top: 20px;
}

.certifications-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

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

.approach-section {
    padding: 80px 0;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.approach-item {
    display: flex;
    gap: 25px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.approach-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-content {
    padding: 60px 0;
}

.contact-method {
    margin-bottom: 35px;
}

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

.contact-method p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-method a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 20px;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.directions-section {
    padding: 60px 0;
}

.directions-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.direction-item {
    flex: 1;
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
}

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

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

.alt-contact-list {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.alt-contact-item {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.alt-contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-note-bottom {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.thanks-hero {
    padding: 80px 0;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.thanks-details {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.selected-service {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 10px;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    flex: 1;
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
}

.step-item .step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background: #c0392b;
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    color: #fff;
}

.while-waiting {
    background: var(--light-bg);
    padding: 60px 0;
}

.resources-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.resource-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.urgent-contact {
    text-align: center;
    padding: 60px 0;
}

.urgent-email {
    font-size: 24px;
    margin: 20px 0;
}

.urgent-email a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.urgent-note {
    color: #666;
    font-style: italic;
}

.legal-page {
    padding: 60px 0;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-container p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-container ul,
.legal-container ol {
    margin: 15px 0 15px 25px;
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 8px;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

.legal-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

    .stats-grid,
    .testimonial-grid,
    .approach-grid,
    .expertise-highlights,
    .mission-grid,
    .team-grid,
    .expertise-areas,
    .directions-grid,
    .alt-contact-list,
    .resources-grid,
    .steps-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

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

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

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

    .comparison-table {
        font-size: 14px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }
}

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

    .hero-split .lead-text {
        font-size: 16px;
    }

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

    h2 {
        font-size: 28px;
    }

    .service-cards {
        gap: 15px;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }
}
