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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a4d6f;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #1a4d6f;
}

.ad-label {
    font-size: 11px;
    color: #6b7280;
    border: 1px solid #d1d5db;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.hero-split {
    min-height: 600px;
    background-color: #f9fafb;
}

.hero-content {
    display: flex;
    min-height: 600px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 800;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #1a4d6f;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary:hover {
    background-color: #2d5a7b;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a4d6f;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #1a4d6f;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #f0f7fb;
}

.split-layout {
    display: flex;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-split {
    background-color: #ffffff;
}

.method-split {
    background-color: #f9fafb;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #2d3748;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a4d6f;
    font-weight: 700;
    font-size: 20px;
}

.link-arrow {
    display: inline-block;
    color: #1a4d6f;
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
    transition: transform 0.3s ease;
}

.link-arrow::after {
    content: " →";
}

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

.services-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

.section-header-center p {
    font-size: 20px;
    color: #6b7280;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background-color: #f9fafb;
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a4d6f;
    margin: 20px 0;
}

.btn-select {
    background-color: #1a4d6f;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2d5a7b;
}

.testimonials-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.testimonials-split {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #6b7280;
    font-weight: 600;
}

.form-split {
    padding: 100px 0;
    background-color: #ffffff;
}

.form-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-text {
    flex: 1;
}

.form-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.form-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 32px;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #2d3748;
    font-weight: 500;
}

.feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a4d6f;
    font-weight: 700;
    font-size: 20px;
}

.form-wrapper {
    flex: 1;
    background-color: #f9fafb;
    padding: 48px;
    border-radius: 12px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a4d6f;
}

.form-group input[readonly] {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #1a4d6f;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2d5a7b;
}

.trust-section {
    padding: 80px 0;
    background-color: #1a4d6f;
    color: #ffffff;
}

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

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-item h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 18px;
    opacity: 0.9;
}

.footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #a0aec0;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    color: #718096;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    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: 32px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #1a4d6f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2d5a7b;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #4a5568;
}

.btn-reject:hover {
    background-color: #2d3748;
}

.page-hero {
    background-color: #f9fafb;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 800;
}

.lead {
    font-size: 22px;
    color: #6b7280;
}

.about-split,
.mission-split {
    background-color: #ffffff;
}

.values-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.coverage-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.coverage-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.coverage-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.cta-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.cta-box {
    background-color: #1a4d6f;
    padding: 80px 60px;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-box .cta-primary {
    background-color: #ffffff;
    color: #1a4d6f;
}

.cta-box .cta-primary:hover {
    background-color: #f3f4f6;
}

.services-detail {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-split {
    display: flex;
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
}

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

.service-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.service-detail-description {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-includes {
    list-style: none;
    margin: 28px 0;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #2d3748;
}

.service-includes li::before {
    content: "•";
    position: absolute;
    left: 12px;
    color: #1a4d6f;
    font-weight: 700;
    font-size: 24px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 28px 0;
}

.price-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 600;
}

.price-value {
    font-size: 32px;
    color: #1a4d6f;
    font-weight: 800;
}

.services-cta {
    padding: 100px 0;
    background-color: #f9fafb;
}

.contact-split {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-container {
    display: flex;
    gap: 60px;
}

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

.contact-info-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.contact-info-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.no-link {
    color: #2d3748;
    font-weight: 500;
}

.contact-map-placeholder {
    flex: 1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
}

.map-overlay p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 400px;
}

.service-area-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.service-area-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a202c;
    font-weight: 700;
}

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

.area-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    margin-bottom: 32px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
}

.area-item {
    background-color: #ffffff;
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 16px;
    color: #2d3748;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

.area-note {
    font-size: 16px;
    text-align: center;
    color: #6b7280;
    font-style: italic;
    margin-top: 32px;
}

.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-cta {
    padding: 100px 0;
    background-color: #f9fafb;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: #e0f2fe;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.selected-service {
    font-size: 18px;
    color: #1a4d6f;
    font-weight: 600;
}

.thanks-next {
    margin: 60px 0;
    text-align: center;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1a4d6f;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

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

.thanks-info {
    padding: 60px 0;
    background-color: #ffffff;
}

.info-boxes {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 300px;
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 700;
}

.info-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a202c;
    font-weight: 800;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2d3748;
    font-weight: 600;
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 19px;
    color: #2d3748;
    margin-bottom: 40px;
}

.legal-page ul {
    margin: 20px 0 20px 32px;
}

.legal-page ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

.legal-page a {
    color: #1a4d6f;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2d5a7b;
}

.legal-date {
    margin-top: 60px;
    font-size: 15px;
    color: #9ca3af;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-content,
    .split-layout {
        flex-direction: column;
    }

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

    .hero-text,
    .split-content {
        padding: 60px 40px;
    }

    .form-container,
    .contact-container {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 16px);
    }

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

@media (max-width: 768px) {
    .container,
    .container-narrow {
        padding: 0 24px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

    .hero-text p {
        font-size: 18px;
    }

    .split-content h2 {
        font-size: 30px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

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

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

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

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

    .service-info {
        padding: 40px 32px;
    }

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