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

:root {
    --primary-color: #2c5f7e;
    --secondary-color: #e8734a;
    --dark-blue: #1a3a4f;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e4e8;
    --text-dark: #2d3748;
    --text-light: #718096;
    --success-green: #48bb78;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    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;
}

.main-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--medium-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

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

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

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

.hero-section {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(44,95,126,0.95), rgba(26,58,79,0.95)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.hero-overlay {
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(232,115,74,0.3);
}

.hero-cta:hover {
    background-color: #d66539;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(232,115,74,0.4);
}

.story-intro {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-blue);
}

.story-intro p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
}

.split-visual {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

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

.problem-amplification {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.problem-amplification h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-blue);
}

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

.problem-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

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

.trust-intro {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    color: var(--white);
}

.trust-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.trust-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.how-it-works {
    padding: 6rem 2rem;
    background-color: var(--light-gray);
}

.how-it-works h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-blue);
}

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.step-arrow {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.testimonials-flow {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.testimonials-flow h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-blue);
}

.testimonial-card {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.value-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.value-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-blue);
}

.services-showcase {
    display: flex;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.service-box {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid var(--medium-gray);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-box.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(232,115,74,0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.service-features li:before {
    content: "✓ ";
    color: var(--success-green);
    font-weight: 700;
    margin-right: 0.5rem;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-btn {
    display: block;
    text-align: center;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.urgency-section {
    padding: 5rem 2rem;
    background-color: #fff5f0;
    border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.urgency-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.urgency-section p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.urgency-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.urgency-cta:hover {
    background-color: #d66539;
    transform: translateY(-2px);
}

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

.additional-services h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-blue);
}

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

.additional-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.additional-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.additional-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.additional-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    color: var(--white);
}

.form-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.service-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    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);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

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

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

.form-submit:hover {
    background-color: #d66539;
    transform: translateY(-2px);
}

.final-push {
    padding: 5rem 2rem;
    background-color: var(--light-gray);
    text-align: center;
}

.final-push h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-blue);
}

.final-push p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.final-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.final-cta:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(232,115,74,0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #d66539;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232,115,74,0.5);
}

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

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26,58,79,0.98);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

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

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

.cookie-btn.accept:hover {
    background-color: #38a169;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    color: var(--white);
    padding: 5rem 2rem 3rem;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detail {
    padding: 4rem 2rem;
    background-color: var(--light-gray);
}

.service-detail-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: relative;
}

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

.popular-tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--dark-blue);
}

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

.service-detail-body p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.service-detail-body h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.service-detail-body ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-body ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

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

.detail-cta:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.services-cta-section {
    padding: 4rem 2rem;
    background-color: var(--white);
    text-align: center;
}

.services-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.services-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.services-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-cta-btn:hover {
    background-color: #d66539;
    transform: translateY(-2px);
}

.about-story,
.about-values,
.about-team,
.about-numbers,
.about-mission {
    padding: 4rem 2rem;
}

.about-story {
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-blue);
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-values {
    background-color: var(--light-gray);
}

.about-values h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-blue);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.about-team {
    background-color: var(--white);
}

.about-team h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.team-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 12px;
}

.team-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.team-role {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.about-numbers {
    background-color: var(--primary-color);
    color: var(--white);
}

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

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

.number-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.number-box p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.about-mission {
    background-color: var(--light-gray);
}

.about-mission h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-blue);
}

.about-mission p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-cta {
    padding: 4rem 2rem;
    background-color: var(--white);
    text-align: center;
}

.about-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    background-color: #d66539;
    transform: translateY(-2px);
}

.contact-content {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-blue);
    text-align: center;
}

.contact-details {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

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

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

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

.contact-map-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--dark-blue);
    text-align: center;
}

.map-placeholder {
    background-color: var(--medium-gray);
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-faq {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.contact-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-blue);
    text-align: center;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success-green);
    color: var(--white);
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.thanks-details {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.selected-service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.selected-service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.thanks-next-steps {
    margin-bottom: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    text-align: center;
}

.next-steps-list {
    padding-left: 1.5rem;
}

.next-steps-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.thanks-btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-btn.primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.thanks-btn.primary:hover {
    background-color: var(--dark-blue);
}

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

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

.thanks-contact-info {
    font-size: 1rem;
    color: var(--text-light);
}

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

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

.legal-content {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.legal-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

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

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

.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(--medium-gray);
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

    .step-arrow {
        transform: rotate(90deg);
    }

    .services-showcase {
        flex-direction: column;
        align-items: center;
    }

    .service-box.featured {
        transform: none;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

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