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

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

.ad-disclosure {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a5f7a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #1a5f7a;
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a2332;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.cta-button {
    display: inline-block;
    background: #1a5f7a;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background: #144d61;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #1a5f7a;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #1a5f7a;
    transition: all 0.3s ease;
    font-size: 16px;
}

.secondary-button:hover {
    background: #1a5f7a;
    color: #ffffff;
}

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

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

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

.intro-section {
    padding: 100px 0;
}

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

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 24px;
}

.text-block p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefits-cards {
    padding: 100px 0;
    background: #f7f9fc;
}

.benefits-cards h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

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

.benefit-card {
    flex: 1;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-card img {
    width: 100%;
    display: block;
}

.benefit-card h3 {
    padding: 24px 28px 12px;
    font-size: 22px;
    color: #1a2332;
}

.benefit-card p {
    padding: 0 28px 28px;
    color: #5a6c7d;
    font-size: 16px;
}

.services-overview {
    padding: 100px 0;
}

.services-overview h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a2332;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 32px;
    color: #1a2332;
    margin-bottom: 16px;
}

.service-details p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 28px;
    color: #1a5f7a;
    font-weight: 700;
    margin: 20px 0;
}

.select-service {
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #144d61;
}

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

.trust-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.testimonials {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    padding: 36px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.author {
    display: block;
    font-size: 15px;
    color: #9fb3c8;
    font-style: italic;
}

.form-section {
    padding: 100px 0;
    background: #f7f9fc;
}

.form-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a2332;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 48px;
}

.contact-form {
    background: #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 select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    width: 100%;
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #144d61;
}

.disclaimer-section {
    padding: 60px 0;
    background: #fef9f3;
}

.disclaimer {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
    text-align: center;
}

.footer {
    background: #1a2332;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-col p {
    color: #9fb3c8;
    font-size: 15px;
}

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

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

.footer-col ul li a {
    color: #9fb3c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #144d61;
}

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

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

.page-header {
    background: #f7f9fc;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a2332;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #5a6c7d;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    display: block;
}

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

.service-detail-content h2 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 12px;
}

.service-price {
    font-size: 26px;
    color: #1a5f7a;
    font-weight: 700;
    margin-bottom: 24px;
}

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

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

.feature-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: #2c3e50;
    font-size: 16px;
}

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

.cta-section {
    padding: 100px 0;
    background: #1a5f7a;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .cta-button {
    background: #ffffff;
    color: #1a5f7a;
}

.cta-section .cta-button:hover {
    background: #f0f0f0;
}

.about-intro {
    padding: 80px 0;
}

.values-section {
    padding: 80px 0;
    background: #f7f9fc;
}

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

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

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 24px;
    color: #1a2332;
    margin-bottom: 12px;
}

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

.process-section {
    padding: 80px 0;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 24px;
    color: #1a2332;
    margin-bottom: 8px;
}

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

.team-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.contact-section {
    padding: 80px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 40px;
}

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

.info-block h3 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 8px;
}

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

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.map-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a2332;
}

.map-placeholder {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(26, 35, 50, 0.9);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 4px;
}

.map-overlay p {
    font-size: 16px;
    margin: 0;
}

.legal-page {
    padding: 80px 0;
}

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

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

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

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

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

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

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

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

.thanks-content {
    background: #f7f9fc;
    padding: 60px;
    border-radius: 8px;
}

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

.thanks-content h1 {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.thanks-note {
    background: #ffffff;
    padding: 24px;
    border-radius: 4px;
    border-left: 4px solid #1a5f7a;
    margin: 32px 0;
}

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

#selectedServiceDisplay {
    font-size: 20px;
    font-weight: 600;
    color: #1a5f7a;
    margin: 16px 0;
}

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

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

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

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

    .testimonials {
        flex-direction: column;
    }

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

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

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

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

    .cookie-content {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .container,
    .container-wide,
    .container-narrow {
        padding: 0 20px;
    }

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

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

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

    .benefits-cards h2,
    .services-overview h2,
    .trust-section h2,
    .form-section h2 {
        font-size: 32px;
    }
}