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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d6a4f;
    --accent-color: #95d5b2;
    --dark-color: #081c15;
    --light-color: #f1faee;
    --text-color: #2b2d42;
    --gray-color: #8d99ae;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 90%;
    max-width: 900px;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hero-overlay {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 100%);
    padding: 120px 20px 80px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-finance.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-content-narrow {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    color: var(--white);
}

.hero-content-narrow h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtext {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(149, 213, 178, 0.3);
    transition: var(--transition);
}

.cta-primary:hover {
    background: #74c69d;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(149, 213, 178, 0.4);
}

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

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

.cta-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 22px 50px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.3);
    transition: var(--transition);
}

.cta-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 77, 46, 0.4);
}

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

.story-intro h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--dark-color);
}

.story-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.inline-cta {
    margin-top: 40px;
}

.cta-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
    display: inline-block;
}

.cta-text:hover {
    border-bottom-color: var(--primary-color);
}

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

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

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

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

.split-right h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 25px;
    color: var(--dark-color);
}

.split-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
}

.problem-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #d62828;
    font-size: 1.5rem;
    font-weight: 700;
}

.emphasis {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-top: 30px;
}

.insight-reveal {
    padding: 100px 20px;
    background: var(--white);
}

.insight-reveal h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 20px;
    text-align: center;
    color: var(--dark-color);
}

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

.pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.pillar-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    border-left: 5px solid var(--accent-color);
}

.pillar-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
}

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

.pillar-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.insight-cta {
    text-align: center;
    padding: 50px 30px;
    background: var(--light-color);
    border-radius: 12px;
    margin-top: 40px;
}

.cta-question {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 600;
}

.social-proof {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.social-proof h3 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 1.05rem;
}

.testimonial-author span {
    font-size: 0.95rem;
    opacity: 0.8;
}

.trust-building {
    padding: 80px 20px;
    background: var(--white);
}

.trust-building h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark-color);
}

.trust-building > div > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge-item {
    flex: 1 1 160px;
    text-align: center;
    padding: 20px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.badge-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

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

.services-preview h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

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

.service-header h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

.service-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-color);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 0.95rem;
}

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

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

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

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

.urgency-section h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    text-align: center;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.urgency-section > div > p {
    text-align: center;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.calculation-box {
    background: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto 30px;
    border-left: 5px solid #d62828;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.calc-item:last-child {
    border-bottom: none;
}

.calc-label {
    font-size: 1.1rem;
    color: var(--text-color);
}

.calc-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d62828;
}

.urgency-text {
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.form-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
    margin-bottom: 20px;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.95;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 650px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    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(--accent-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

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

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.final-cta {
    padding: 100px 20px;
    background: var(--white);
}

.final-cta h3 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.choice-comparison {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.choice-option {
    flex: 1;
    padding: 35px;
    background: var(--light-color);
    border-radius: 12px;
}

.choice-option.highlighted {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.choice-option h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.choice-option p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.final-cta-button {
    text-align: center;
}

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

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

.footer-section {
    flex: 1 1 200px;
}

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

.footer-section p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-cta-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.sticky-cta-btn {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 700;
    white-space: nowrap;
}

.sticky-cta-btn:hover {
    background: #74c69d;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    max-width: 600px;
    display: none;
}

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

.cookie-content p {
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept {
    background: var(--primary-color);
    color: var(--white);
    flex: 1;
}

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

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

.btn-reject:hover {
    border-color: var(--text-color);
}

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

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

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

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

.service-detail-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--light-color);
}

.service-tagline {
    color: var(--gray-color);
    font-size: 1rem;
    margin-top: 8px;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.service-detail-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.service-detail-content p,
.service-detail-content ul {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
}

.service-detail-content ul li {
    padding: 8px 0 8px 30px;
    position: relative;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.cta-section {
    padding: 80px 20px;
    background: var(--light-color);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-story {
    padding: 80px 20px;
    background: var(--white);
}

.about-story h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-color);
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.split-content-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.approach-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

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

.approach-card {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background: var(--light-color);
    border-radius: 12px;
}

.approach-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.approach-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.values-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.values-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

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

.value-item {
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
}

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

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
    background: var(--white);
}

.team-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.team-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.stats-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

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

.stat-item {
    flex: 1 1 calc(50% - 20px);
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
}

.contact-info-section {
    padding: 80px 20px;
    background: var(--white);
}

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

.contact-info-block {
    flex: 1;
}

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

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

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.info-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gray-color);
    margin-top: 10px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.additional-info-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.additional-info-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.additional-info-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 5px solid var(--accent-color);
}

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

.info-box p {
    font-size: 1.05rem;
}

.thanks-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    opacity: 0.95;
}

.service-confirmation {
    margin-top: 40px;
}

.service-selected-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.service-selected-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.selected-service {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-note {
    font-size: 1rem;
    opacity: 0.9;
}

.next-steps {
    padding: 80px 20px;
    background: var(--white);
}

.next-steps h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

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

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.thanks-resources {
    padding: 80px 20px;
    background: var(--light-color);
}

.thanks-resources h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.thanks-resources > div > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.resource-links {
    display: flex;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.resource-card {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
    display: block;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resource-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.resource-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.thanks-cta {
    padding: 60px 20px;
    background: var(--white);
    text-align: center;
}

.thanks-note {
    font-size: 1.05rem;
    color: var(--text-color);
}

.thanks-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

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

.legal-page h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 15px;
    color: var(--dark-color);
}

.last-updated {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 10px;
}

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

.cookies-table thead {
    background: var(--light-color);
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

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

@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        padding: 12px 20px;
        gap: 20px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 20px;
        right: 20px;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
        display: none;
        gap: 15px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .split-content,
    .split-content-reverse {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .choice-comparison {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .sticky-cta-btn {
        width: 100%;
    }

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

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

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

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

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

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

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

@media (max-width: 480px) {
    .pillars-grid {
        gap: 25px;
    }

    .pillar-card {
        padding: 25px;
    }

    .testimonials-flow {
        gap: 20px;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }
}