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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2ecc71;
    --dark-color: #1a1a2e;
    --light-gray: #f4f6f9;
    --medium-gray: #e0e4e8;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --white: #ffffff;
    --accent-gold: #d4af37;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

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

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

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    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;
    height: 70px;
}

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

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

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

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--light-gray);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
}

.cta-primary:hover {
    background-color: #134073;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.4);
}

.cta-primary-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 50px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
}

.cta-primary-large:hover {
    background-color: #134073;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.4);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #134073;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    padding: 14px 32px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.value-proposition {
    padding: 80px 20px;
    background-color: var(--white);
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

.insight-split {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light-gray);
}

.insight-visual {
    flex: 1;
}

.insight-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.insight-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

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

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.trust-building-split {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.trust-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.trust-visual {
    flex: 1;
}

.trust-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 8px;
}

.testimonials-flow {
    padding: 100px 20px;
    background-color: var(--light-gray);
}

.testimonials-flow h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

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

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.services-preview-split {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
}

.services-visual {
    flex: 1;
}

.services-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-content {
    flex: 1;
}

.services-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.services-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.urgency-section h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    text-align: center;
}

.urgency-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.consultation-form-split {
    display: flex;
    gap: 60px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light-gray);
}

.form-content {
    flex: 1.2;
}

.form-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.form-content > p {
    margin-bottom: 35px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.consultation-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-visual {
    flex: 0.8;
}

.form-benefits {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.form-benefits ul {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.final-trust-split {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
}

.final-trust-content {
    flex: 1;
}

.final-trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: var(--dark-color);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-point h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.trust-point p {
    color: var(--text-light);
    line-height: 1.7;
}

.final-trust-visual {
    flex: 1;
}

.final-trust-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.closing-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color), #0d3a5f);
    text-align: center;
    color: var(--white);
}

.closing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.closing-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), #0d3a5f);
    color: var(--white);
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.services-intro-split {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

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

.intro-visual {
    flex: 1;
}

.intro-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-detailed {
    padding: 60px 20px 100px;
    background-color: var(--light-gray);
}

.service-card-split {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-card-split.featured {
    border: 3px solid var(--accent-gold);
}

.service-info {
    flex: 2;
}

.service-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-includes h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-includes ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

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

.service-ideal {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.service-pricing {
    flex: 1;
    text-align: center;
}

.price-tag {
    background: linear-gradient(135deg, var(--primary-color), #0d3a5f);
    color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-note {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
}

.service-guarantee {
    padding: 80px 20px;
    background-color: var(--white);
}

.service-guarantee h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark-color);
}

.service-guarantee p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-light);
}

.next-steps-split {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light-gray);
}

.next-steps-visual {
    flex: 1;
}

.next-steps-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.next-steps-content {
    flex: 1;
}

.next-steps-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.next-steps-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-hero-split {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light-gray);
}

.about-hero-content {
    flex: 1;
}

.about-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.about-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.about-hero-visual {
    flex: 1;
}

.about-hero-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.origin-story h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    text-align: center;
    color: var(--dark-color);
}

.origin-story p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-light);
}

.values-split {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light-gray);
}

.values-visual {
    flex: 1;
}

.values-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: var(--dark-color);
}

.value-item {
    margin-bottom: 30px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-step {
    flex: 1 1 calc(33.333% - 27px);
    text-align: center;
}

.step-number {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #0d3a5f);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.approach-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.credentials-split {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light-gray);
}

.credentials-content {
    flex: 1;
}

.credentials-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.credentials-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.credentials-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.credentials-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.reg-details {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.credentials-visual {
    flex: 1;
}

.credentials-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.track-record {
    padding: 100px 20px;
    background-color: var(--white);
}

.track-record h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--dark-color);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    flex: 1 1 calc(50% - 20px);
    text-align: center;
    padding: 40px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.stat-large {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.philosophy-split {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light-gray);
}

.philosophy-visual {
    flex: 1;
}

.philosophy-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.philosophy-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.difference-section h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-color);
}

.difference-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-light);
}

.cta-split {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light-gray);
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.cta-visual {
    flex: 1;
}

.cta-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), #0d3a5f);
    color: var(--white);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-split {
    display: flex;
    gap: 80px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.info-block a:hover {
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-details {
    padding: 100px 20px;
    background-color: var(--light-gray);
}

.location-details h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
}

.transport-split {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.transport-info,
.parking-info {
    flex: 1;
}

.transport-info h3,
.parking-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--primary-color);
}

.transport-info h3:first-child,
.parking-info h3:first-child {
    margin-top: 0;
}

.transport-info p,
.parking-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.parking-info ul {
    list-style: none;
    padding-left: 20px;
}

.parking-info li {
    color: var(--text-light);
    padding: 5px 0;
    position: relative;
}

.parking-info li::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--primary-color);
}

.faq-contact {
    padding: 100px 20px;
    background-color: var(--white);
}

.faq-contact h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-color);
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color), #0d3a5f);
    text-align: center;
    color: var(--white);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-hero {
    padding: 100px 20px;
    background-color: var(--light-gray);
}

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

.success-icon {
    margin-bottom: 30px;
}

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

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-color);
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #0d3a5f);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.meanwhile {
    margin: 60px 0;
}

.meanwhile h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-color);
}

.meanwhile > p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
}

.resource-links {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.resource-link {
    flex: 1;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    border: 2px solid var(--medium-gray);
    transition: var(--transition);
}

.resource-link:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.resource-link h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.resource-link p {
    color: var(--text-light);
}

.contact-reminder {
    margin: 50px 0;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    text-align: center;
}

.contact-reminder p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.contact-reminder a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.policy-page {
    padding: 60px 20px 100px;
    background-color: var(--white);
}

.policy-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.effective-date {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.policy-page h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.policy-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.policy-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-page ul {
    margin: 20px 0;
    padding-left: 25px;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
    .hero-content,
    .insight-split,
    .trust-building-split,
    .services-preview-split,
    .consultation-form-split,
    .final-trust-split,
    .services-intro-split,
    .next-steps-split,
    .about-hero-split,
    .values-split,
    .credentials-split,
    .philosophy-split,
    .cta-split,
    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-card-split,
    .service-card-split.reverse {
        flex-direction: column;
    }

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

    .hero-text p {
        font-size: 1.1rem;
    }

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

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

    .trust-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .approach-step {
        flex: 1 1 100%;
    }

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

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

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

    .resource-links {
        flex-direction: column;
    }

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

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

    .cookie-actions button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}
