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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #e85d04;
    --text-dark: #1f1f1f;
    --text-medium: #4a4a4a;
    --text-light: #717171;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: none;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

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

.nav-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
    display: block;
}

.hero-split,
.intro-split,
.form-split,
.trust-split,
.cta-split,
.page-hero-split,
.story-split,
.values-split,
.team-split,
.mission-split,
.service-detail-split,
.contact-info-split,
.faq-split,
.thanks-split {
    display: flex;
    flex-direction: column;
    min-height: 450px;
    margin-top: 70px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.hero-content,
.intro-content,
.trust-content,
.cta-content,
.story-content,
.values-content,
.team-content,
.mission-content,
.service-detail-content,
.contact-details,
.faq-content,
.thanks-content {
    max-width: 600px;
}

.hero-content h1,
.thanks-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-subtitle,
.thanks-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.95rem 2.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-primary,
.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

.cta-primary:hover,
.btn-primary:hover {
    background: #143d62;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.hero-image,
.intro-image,
.trust-image,
.cta-image,
.story-image,
.values-image,
.team-image,
.mission-image,
.service-detail-image,
.contact-image,
.faq-image,
.thanks-image {
    background: var(--bg-light);
    overflow: hidden;
    position: relative;
    min-height: 350px;
}

.hero-image img,
.intro-image img,
.trust-image img,
.cta-image img,
.story-image img,
.values-image img,
.team-image img,
.mission-image img,
.service-detail-image img,
.contact-image img,
.faq-image img,
.thanks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content h2,
.trust-content h2,
.cta-content h2,
.story-content h2,
.values-content h2,
.team-content h2,
.mission-content h2,
.service-detail-content h2,
.contact-details h2,
.faq-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.intro-content p,
.trust-content p,
.cta-content p,
.story-content p,
.values-content p,
.team-content p,
.mission-content p,
.service-detail-content p {
    margin-bottom: 1.2rem;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.services-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

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

.service-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-visual {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-visual img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-info p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.price-unit {
    font-size: 0.95rem;
    color: var(--text-medium);
}

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

.btn-select-service:hover {
    background: #c74e03;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.form-container {
    max-width: 600px;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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);
}

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

.btn-submit:hover {
    background: #143d62;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.trust-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.testimonials-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

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

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

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

.footer-section p {
    color: #b0b0b0;
    line-height: 1.7;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    color: #808080;
}

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c74e03;
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(232, 93, 4, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(31, 31, 31, 0.97);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.btn-accept:hover {
    background: #143d62;
}

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

.btn-reject:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.stats-section {
    padding: 5rem 1.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.stats-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section-alt {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.pricing-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 600;
}

.pricing-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.map-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

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

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

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

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.legal-page {
    padding: 6rem 1.5rem 4rem;
    background: var(--bg-white);
    min-height: 100vh;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.legal-container ul li {
    margin-bottom: 0.8rem;
    color: var(--text-medium);
    line-height: 1.7;
    list-style: disc;
}

.legal-container a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.thanks-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-info p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.selected-service-info {
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.next-steps-section {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.next-steps-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.next-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.next-step-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.next-step-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.next-step-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.next-step-card a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.next-step-card a:hover {
    color: #143d62;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .cta-split,
    .page-hero-split,
    .story-split,
    .values-split,
    .team-split,
    .mission-split,
    .service-detail-split,
    .contact-info-split,
    .faq-split,
    .thanks-split {
        flex-direction: row;
        min-height: 600px;
    }

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

    .split-left,
    .split-right {
        padding: 4rem 3rem;
    }

    .hero-content h1,
    .thanks-content h1 {
        font-size: 3.2rem;
    }

    .hero-subtitle,
    .thanks-subtitle {
        font-size: 1.25rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 300px;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .thanks-actions {
        flex-direction: row;
        gap: 1.5rem;
    }

    .next-steps-grid {
        flex-direction: row;
    }

    .next-step-card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-content h1,
    .thanks-content h1 {
        font-size: 3.8rem;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .stat-card {
        flex: 1 1 calc(25% - 1.5rem);
    }
}
