* {
    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: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e6ed;
    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: 600;
    color: #1a5490;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

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

.main-nav a:hover {
    color: #1a5490;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c9a;
    padding: 4px 8px;
    background: #f5f7fa;
    border-radius: 4px;
}

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 60px;
    background: #f8fafb;
}

.hero-text h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a5490;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #143d6b;
}

.intro-section {
    padding: 80px 20px;
    background: #ffffff;
}

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: #4a5568;
    text-align: center;
}

.services-highlight {
    background: #ffffff;
}

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

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

.split-content,
.split-image {
    flex: 1;
}

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

.split-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a5490;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a5568;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 20px;
}

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

.service-link:hover {
    color: #143d6b;
}

.split-image {
    display: flex;
}

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

.trust-section {
    padding: 80px 20px;
    background: #f8fafb;
}

.trust-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

.benefits-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
}

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-card p {
    color: #4a5568;
}

.form-section {
    padding: 80px 20px;
    background: #ffffff;
}

.form-section h3 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a5490;
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #143d6b;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    color: #b8c5d0;
    margin-bottom: 8px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #b8c5d0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid #3a4f63;
    border-bottom: 1px solid #3a4f63;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    color: #b8c5d0;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    color: #b8c5d0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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: 20px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #8fbadd;
}

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

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

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

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

.btn-reject {
    background: #5a6c7d;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4a5568;
}

.page-hero {
    padding: 80px 20px;
    background: #f8fafb;
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a5490;
}

.page-hero p {
    font-size: 18px;
    color: #4a5568;
}

.about-content,
.services-detail {
    background: #ffffff;
}

.values-section {
    padding: 80px 20px;
    background: #f8fafb;
}

.values-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

.values-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item p {
    color: #4a5568;
}

.service-card-large {
    display: flex;
    min-height: 400px;
    border-bottom: 1px solid #e0e6ed;
}

.service-card-large.reverse {
    flex-direction: row-reverse;
}

.card-visual {
    flex: 1;
    display: flex;
}

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

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

.card-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a5490;
}

.card-text p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a5568;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 20px;
}

.service-action {
    display: inline-block;
    padding: 12px 28px;
    background: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.service-action:hover {
    background: #143d6b;
}

.pricing-note {
    padding: 60px 20px;
    background: #f8fafb;
}

.pricing-note p {
    font-size: 16px;
    color: #4a5568;
    text-align: center;
    line-height: 1.7;
}

.contact-info-section {
    background: #ffffff;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a5490;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #2c3e50;
}

.visit-note {
    padding: 80px 20px;
    background: #f8fafb;
}

.visit-note h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a5490;
}

.visit-note p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background: #ffffff;
    min-height: 60vh;
}

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

.thanks-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a5490;
}

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

.thanks-content #service-confirmation {
    font-weight: 600;
    color: #2c3e50;
    font-size: 19px;
}

.thanks-content .btn-primary {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-content .btn-primary:hover {
    background: #143d6b;
}

.legal-page {
    padding: 60px 20px 80px;
    background: #ffffff;
}

.legal-page h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a5490;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 16px;
    margin-left: 20px;
    color: #4a5568;
}

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.7;
}

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

    .hero-left {
        padding: 40px 20px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

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

    .split-content {
        padding: 40px 20px;
    }

    .split-content h3 {
        font-size: 26px;
    }

    .service-card-large,
    .service-card-large.reverse {
        flex-direction: column;
    }

    .card-text {
        padding: 40px 20px;
    }

    .main-nav ul {
        gap: 15px;
    }

    .benefits-grid,
    .values-list {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}