* {
    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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8ebf0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a2738;
    letter-spacing: -0.5px;
}

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

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

.navigation a:hover {
    color: #3498db;
}

.ad-label {
    background-color: #fff3cd;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #856404;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8f9fb;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a2738;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background-color: #1a2738;
    overflow: hidden;
    position: relative;
}

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

.cta-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

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

.cta-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 80px 0;
}

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2738;
    font-weight: 700;
    line-height: 1.3;
}

.content-block p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.image-block {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

.link-cta {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: #2980b9;
}

.insight-section,
.value-proposition,
.trust-section {
    padding: 80px 0;
}

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

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

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

.section-header p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #f8f9fb;
    padding: 36px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

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

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
}

.service-card.selected {
    background-color: #e8f4fd;
    border: 2px solid #3498db;
}

.contact-form-section {
    padding: 100px 0;
    background-color: #f8f9fb;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a2738;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #5a6c7d;
}

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

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

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

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

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

.service-display {
    padding: 14px;
    background-color: #f8f9fb;
    border-radius: 6px;
    color: #5a6c7d;
    font-size: 16px;
}

.service-display.selected {
    background-color: #e8f4fd;
    color: #2c3e50;
    font-weight: 600;
}

.submit-btn {
    background-color: #2ecc71;
    color: #ffffff;
    padding: 16px 48px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

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

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

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

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

.footer-column p {
    font-size: 14px;
    color: #b8c5d6;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #b8c5d6;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #b8c5d6;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 13px;
    color: #8a9fb3;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #15202d;
    border-radius: 6px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e8ebf0;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #2c3e50;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #27ae60;
}

.cookie-btn.reject {
    background-color: #e74c3c;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #c0392b;
}

.page-hero {
    background-color: #1a2738;
    color: #ffffff;
    padding: 100px 0 80px;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #b8c5d6;
}

.about-content,
.mission-section,
.team-approach,
.values-section {
    padding: 80px 0;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.approach-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #f8f9fb;
    padding: 32px;
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a2738;
    font-weight: 700;
}

.approach-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.intro-text {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f9fb;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a2738;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    padding: 80px 0;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.feature {
    background-color: #e8f4fd;
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: #2ecc71;
    margin: 24px 0;
}

.process-section {
    padding: 80px 0;
    background-color: #f8f9fb;
}

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

.process-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1 1 calc(25% - 23px);
    min-width: 220px;
    text-align: center;
}

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

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a2738;
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

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

.contact-map-placeholder {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a2738;
    font-weight: 700;
}

.info-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.contact-cta {
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a2738;
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #e8f4fd;
    padding: 20px;
    border-radius: 6px;
    margin: 24px 0;
}

.service-confirmation p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

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

.legal-page {
    padding: 60px 0 100px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a2738;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a2738;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #95a5a6;
}

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

    .split-layout {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 36px;
    }

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

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

    .navigation {
        gap: 16px;
    }

    .contact-form {
        padding: 32px 24px;
    }

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

    .process-step {
        flex: 1 1 100%;
    }

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