* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a52;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #1a3a52;
}

.ad-label {
    font-size: 13px;
    color: #8b95a2;
    padding: 6px 12px;
    border: 1px solid #d3dce6;
    border-radius: 4px;
    background-color: #f8fafb;
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: #f4f7f9;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(26, 58, 82, 0.6) 100%);
}

.hero-text-container {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 80px 0;
}

.hero-text-container h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #e8f0f5;
    margin-bottom: 36px;
    max-width: 600px;
}

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

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

.btn-primary-light {
    display: inline-block;
    padding: 16px 32px;
    background-color: #ffffff;
    color: #1a3a52;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-primary-light:hover {
    background-color: #f0f4f7;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #5a6c7d;
    text-decoration: none;
    border: 2px solid #d3dce6;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #f8fafb;
    border-color: #b8c4d0;
}

.btn-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

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

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

.intro-block h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1a3a52;
    margin-bottom: 28px;
    font-weight: 700;
}

.intro-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5c6d;
    margin-bottom: 20px;
}

.bg-light {
    background-color: #f8fafb;
}

.bg-dark {
    background-color: #1a3a52;
    color: #ffffff;
}

.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
    color: #ffffff;
}

.bg-dark p,
.bg-dark li {
    color: #d8e3ec;
}

.image-text-section {
    padding: 100px 0;
}

.two-col-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.col-image {
    flex: 1;
    background-color: #e8ecef;
}

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

.col-text {
    flex: 1;
}

.col-text h3 {
    font-size: 32px;
    line-height: 1.3;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 700;
}

.col-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5c6d;
    margin-bottom: 18px;
}

.benefits-grid {
    padding: 100px 0;
}

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

.section-title-left {
    font-size: 38px;
    color: #1a3a52;
    margin-bottom: 50px;
    font-weight: 700;
}

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

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 22px;
    color: #1a3a52;
    margin-bottom: 14px;
    font-weight: 700;
}

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

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

.testimonial {
    text-align: center;
}

.testimonial p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

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

.process-steps {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 260px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
    opacity: 0.3;
}

.process-step h4 {
    font-size: 22px;
    color: #1a3a52;
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5c6d;
    max-width: 700px;
    margin: -30px auto 50px;
}

.services-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8ecef;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #e8ecef;
}

.service-card h4 {
    font-size: 22px;
    color: #1a3a52;
    margin: 24px 24px 12px;
    font-weight: 700;
}

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

.service-card .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
    margin: 0 24px 24px;
}

.cta-center {
    text-align: center;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: #e8f0f5;
}

.site-footer {
    background-color: #1a3a52;
    color: #d8e3ec;
    padding: 80px 0 30px;
}

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

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

.footer-col h5 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #b8c7d4;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8c7d4;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #8b9aaa;
    margin-bottom: 10px;
}

.disclaimer-footer {
    font-size: 13px;
    line-height: 1.6;
    color: #6d7f91;
    max-width: 900px;
    margin: 20px auto 0;
}

.page-hero-small {
    padding: 80px 0;
    background-color: #f8fafb;
    border-bottom: 1px solid #e8ecef;
}

.page-hero-small h1 {
    font-size: 48px;
    color: #1a3a52;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.content-section h2 {
    font-size: 32px;
    color: #1a3a52;
    margin-bottom: 24px;
    font-weight: 700;
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5c6d;
    margin-bottom: 20px;
}

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

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

.team-member {
    flex: 1;
    min-width: 280px;
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #e8ecef;
}

.team-member h4 {
    font-size: 22px;
    color: #1a3a52;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-member .role {
    font-size: 15px;
    color: #3498db;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

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

.value-item h4 {
    font-size: 24px;
    color: #1a3a52;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5c6d;
}

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

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e8ecef;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5c6d;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    font-size: 16px;
    color: #5a6c7d;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-pricing {
    margin: 28px 0;
    padding: 20px;
    background-color: #f8fafb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #5a6c7d;
    font-weight: 600;
}

.price-value {
    font-size: 28px;
    color: #3498db;
    font-weight: 700;
}

.service-image {
    flex: 1;
    background-color: #e8ecef;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.selected-service-box {
    background-color: #e8f4f8;
    border: 1px solid #3498db;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
}

.selected-service-box p {
    font-size: 16px;
    color: #1a3a52;
    margin-bottom: 8px;
}

.selected-service-box p:last-child {
    margin-bottom: 0;
}

.hidden {
    display: none;
}

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

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    color: #1a3a52;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item h4 {
    font-size: 18px;
    color: #1a3a52;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5c6d;
}

.email-display {
    font-weight: 600;
    color: #3498db;
    user-select: all;
}

.contact-item .note {
    font-size: 14px;
    color: #8b95a2;
    margin-top: 8px;
}

.contact-image {
    flex: 1;
    background-color: #e8ecef;
}

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

.location-info {
    padding: 80px 0;
}

.location-info h3 {
    font-size: 28px;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5c6d;
}

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

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

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

.faq-item h4 {
    font-size: 20px;
    color: #1a3a52;
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.thanks-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.thanks-box h1 {
    font-size: 38px;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5c6d;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #e8f4f8;
    border: 1px solid #3498db;
    border-radius: 6px;
    padding: 20px;
    margin: 30px 0;
}

.service-confirmation p {
    font-size: 16px;
    color: #1a3a52;
}

.thanks-note {
    font-size: 15px;
    color: #8b95a2;
    margin-bottom: 40px;
}

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

.next-steps {
    padding: 80px 0;
}

.next-steps h2 {
    font-size: 32px;
    color: #1a3a52;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.steps-list {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5c6d;
    padding-left: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.steps-list li {
    margin-bottom: 16px;
}

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

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

.legal-updated {
    font-size: 14px;
    color: #8b95a2;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    color: #1a3a52;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.legal-page ul,
.legal-page ol {
    margin: 20px 0;
    padding-left: 28px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5c6d;
    margin-bottom: 10px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #d8e3ec;
    margin: 0;
}

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

.btn-cookie {
    padding: 10px 20px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

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

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

    .main-nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 16px;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

    .two-col-layout {
        flex-direction: column;
    }

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

    .process-steps {
        flex-direction: column;
    }

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

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

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

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

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

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }
}
