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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-dark: #34495e;
    --border-color: #dfe6e9;
    --success-color: #27ae60;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.main-header {
    background-color: var(--primary-color);
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    color: var(--text-light);
    font-size: 12px;
    opacity: 0.8;
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.hero-section {
    background-color: var(--bg-light);
    padding: 0;
    overflow: hidden;
}

.hero-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 600px;
    position: relative;
}

.hero-content-block {
    flex: 0 0 45%;
    padding: 60px 40px;
    z-index: 2;
}

.hero-content-block h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content-block p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #d67019;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    height: 600px;
    background-color: #b8c6db;
}

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

.intro-offset {
    padding: 100px 40px;
    background-color: white;
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-left {
    flex: 1;
    padding-right: 40px;
}

.intro-left h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.intro-right-card {
    flex: 0 0 400px;
    position: relative;
    margin-top: 60px;
    background-color: #dfe6e9;
}

.intro-right-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 58, 82, 0.95), transparent);
    padding: 30px;
    color: white;
}

.card-overlay h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.card-overlay p {
    font-size: 15px;
    opacity: 0.9;
}

.services-asymmetric {
    padding: 120px 40px;
    background-color: var(--bg-light);
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 80px;
}

.services-header-offset h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 18px;
    color: var(--text-dark);
}

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

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    background-color: #ecf0f1;
}

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

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

.service-card-elevated {
    margin-top: -40px;
}

.service-card-wide {
    flex: 1 1 calc(66.666% - 15px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex: 1;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.select-service {
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-1px);
}

.form-section-offset {
    padding: 100px 40px;
    background-color: white;
}

.form-container-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 0 0 320px;
}

.form-intro h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-form {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 100px 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-content > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    opacity: 0.85;
}

.footer-column a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

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

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-detail-image {
    flex: 0 0 500px;
    background-color: #dfe6e9;
}

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

.service-price-detail {
    margin: 24px 0;
    padding: 16px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 12px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.about-content-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-main {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.about-text-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-image-offset {
    flex: 0 0 450px;
    margin-top: 40px;
    background-color: #dfe6e9;
}

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

.about-values {
    margin-bottom: 100px;
}

.about-values h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.about-accreditation {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: 8px;
}

.accreditation-content {
    flex: 1;
}

.accreditation-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.accreditation-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.accreditation-image {
    flex: 0 0 400px;
    background-color: #dfe6e9;
}

.accreditation-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-process h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
}

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

.process-step h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

.cta-section-about {
    background-color: var(--accent-color);
    color: white;
    padding: 80px 40px;
    text-align: center;
    margin-top: 60px;
}

.cta-section-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-section-about p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: white;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-image {
    flex: 0 0 500px;
    background-color: #dfe6e9;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.map-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.map-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.map-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.service-display {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: var(--primary-color);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-page h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page ul {
    margin: 16px 0 16px 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--accent-color);
}

@media (max-width: 1200px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-block {
        flex: 1;
    }

    .hero-image-offset {
        width: 100%;
    }

    .intro-wrapper {
        flex-direction: column;
    }

    .intro-right-card {
        margin-top: 0;
        width: 100%;
    }

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

    .service-detail-image {
        flex: 1;
        width: 100%;
    }

    .about-main,
    .about-accreditation,
    .contact-layout {
        flex-direction: column;
    }

    .about-image-offset,
    .accreditation-image,
    .contact-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .hero-content-block h1 {
        font-size: 32px;
    }

    .form-container-asymmetric {
        flex-direction: column;
    }

    .form-intro {
        flex: 1;
    }

    .trust-features {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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