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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e6ed;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5f7f;
    letter-spacing: -0.5px;
}

.nav-primary {
    display: flex;
    gap: 2.5rem;
}

.nav-primary a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-primary a:hover {
    color: #2c5f7f;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a3a52;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f7f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #234a63;
    transform: translateY(-2px);
}

.value-prop {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.value-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.value-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-right {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-right h2 {
    font-size: 2.2rem;
    color: #1a3a52;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.value-right p {
    font-size: 1.05rem;
    color: #4a5d6e;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.link-inline {
    color: #2c5f7f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2c5f7f;
    transition: border-color 0.3s;
}

.link-inline:hover {
    border-color: #234a63;
}

.services-grid {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1a3a52;
}

.service-card p {
    padding: 0 1.5rem;
    color: #4a5d6e;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.price {
    padding: 0 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f7f;
    margin-bottom: 1rem;
}

.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    width: calc(100% - 3rem);
    background-color: #2c5f7f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #234a63;
}

.form-section {
    background-color: #f8f9fb;
    padding: 6rem 2rem;
}

.form-section h2 {
    font-size: 2.2rem;
    color: #1a3a52;
    margin-bottom: 1.5rem;
}

.form-left {
    flex: 1;
    padding-right: 3rem;
}

.form-left p {
    font-size: 1.05rem;
    color: #4a5d6e;
    margin-bottom: 1.5rem;
}

.form-benefits {
    list-style: none;
    margin-top: 2rem;
}

.form-benefits li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #34495e;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f7f;
    font-weight: 700;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #34495e;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1d9e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f7f;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c5f7f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #234a63;
}

.trust-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.trust-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2.2rem;
    color: #1a3a52;
    margin-bottom: 3rem;
}

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    flex: 1 1 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5f7f;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #5a6c7d;
}

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

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

.footer-main {
    background-color: #1a3a52;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1 1 220px;
}

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

.footer-col p {
    color: #b8c9d9;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: #b8c9d9;
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}

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

.disclaimer {
    font-size: 0.85rem;
    color: #95a8b8;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d4d66;
    text-align: center;
    color: #95a8b8;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a52;
    color: #ffffff;
    padding: 1.5rem 2rem;
    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: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #2c5f7f;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #234a63;
}

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

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

.page-hero {
    background-color: #f8f9fb;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: #1a3a52;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.about-split {
    display: flex;
    align-items: stretch;
    min-height: 550px;
}

.about-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.2rem;
    color: #1a3a52;
    margin-bottom: 1.8rem;
}

.about-content p {
    font-size: 1.05rem;
    color: #4a5d6e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.values-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f9fb;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 4rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.4rem;
    color: #2c5f7f;
    margin-bottom: 1rem;
}

.value-item p {
    color: #4a5d6e;
    line-height: 1.7;
}

.method-section {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

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

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

.method-content {
    flex: 1;
    padding: 5rem 4rem;
}

.method-content h2 {
    font-size: 2.2rem;
    color: #1a3a52;
    margin-bottom: 3rem;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f7f;
    min-width: 60px;
}

.step h3 {
    font-size: 1.3rem;
    color: #1a3a52;
    margin-bottom: 0.5rem;
}

.step p {
    color: #4a5d6e;
    line-height: 1.7;
}

.cta-section {
    background-color: #2c5f7f;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e0eaf2;
    margin-bottom: 2.5rem;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    margin-bottom: 4rem;
}

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

.service-detail-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a3a52;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5d6e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #34495e;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f7f;
    font-size: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f7f;
    margin-bottom: 1.5rem;
}

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

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

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
}

.form-container-centered h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a3a52;
    margin-bottom: 3rem;
}

.contact-split {
    display: flex;
    align-items: stretch;
    min-height: 550px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-info {
    flex: 1;
    padding: 3rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #1a3a52;
    margin-bottom: 3rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.2rem;
    color: #2c5f7f;
    margin-bottom: 0.8rem;
}

.info-block p {
    color: #4a5d6e;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directions-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f9fb;
}

.directions-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #1a3a52;
    margin-bottom: 3rem;
}

.directions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.direction-item {
    flex: 1 1 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.direction-item h3 {
    font-size: 1.3rem;
    color: #2c5f7f;
    margin-bottom: 0.8rem;
}

.direction-item p {
    color: #4a5d6e;
}

.contact-cta {
    padding: 5rem 2rem;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #f8f9fb;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 2rem;
    color: #1a3a52;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.05rem;
    color: #4a5d6e;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5d6e;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.next-steps {
    margin: 4rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: #1a3a52;
    margin-bottom: 2rem;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fb;
    border-radius: 8px;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: #2c5f7f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    margin: 0;
    color: #34495e;
    text-align: left;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #2c5f7f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #234a63;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c5f7f;
    text-decoration: none;
    border: 2px solid #2c5f7f;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #2c5f7f;
    color: #ffffff;
}

.legal-page {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c5f7f;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: #4a5d6e;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-content li {
    color: #4a5d6e;
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

.legal-content a {
    color: #2c5f7f;
    text-decoration: none;
    border-bottom: 1px solid #2c5f7f;
}

.legal-content a:hover {
    color: #234a63;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #d1d9e0;
}

.legal-table th {
    background-color: #f8f9fb;
    color: #1a3a52;
    font-weight: 600;
}

.legal-table td {
    color: #4a5d6e;
}

@media (max-width: 768px) {
    .hero-split,
    .value-prop,
    .trust-section,
    .about-split,
    .method-section,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-left,
    .value-right,
    .about-content,
    .method-content,
    .service-detail-content,
    .contact-info {
        padding: 3rem 2rem;
    }

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

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

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

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

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