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

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

.main-nav {
    background-color: #1a202c;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4299e1;
}

.ad-notice {
    font-size: 12px;
    color: #a0aec0;
    border: 1px solid #4a5568;
    padding: 4px 12px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 580px;
    background-color: #f7fafc;
}

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

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

.hero-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

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

.cta-primary:hover {
    background-color: #2c5282;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2b6cb0;
    padding: 12px 28px;
    border: 2px solid #2b6cb0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2b6cb0;
    color: #ffffff;
}

.why-us-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-image {
    flex: 1;
    background-color: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
}

.split-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.benefit-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: #2d3748;
    font-size: 16px;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
    font-size: 18px;
}

.services-preview {
    padding: 80px 0;
    background-color: #f7fafc;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 56px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 22px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin: 20px 20px 12px;
}

.service-card p {
    font-size: 15px;
    color: #4a5568;
    margin: 0 20px 16px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2b6cb0;
    margin: 16px 20px 24px;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-wrap {
    display: flex;
    gap: 32px;
}

.testimonial {
    flex: 1;
    background-color: #f7fafc;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #2b6cb0;
}

.testimonial p {
    font-size: 16px;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: #4a5568;
    font-size: 14px;
}

.form-section {
    padding: 80px 0;
    background-color: #edf2f7;
}

.split-form {
    flex: 1;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 20px;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2b6cb0;
}

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

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

.form-info {
    font-size: 14px;
    color: #718096;
    margin-top: 16px;
}

.trust-section {
    padding: 60px 0;
    background-color: #2b6cb0;
}

.trust-content {
    text-align: center;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 0;
}

.footer-container {
    display: flex;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding: 32px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: #a0aec0;
    text-align: center;
    margin-bottom: 12px;
}

.disclaimer {
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie.accept:hover {
    background-color: #2c5282;
}

.btn-cookie.reject {
    background-color: transparent;
    color: #cbd5e0;
    border: 1px solid #4a5568;
}

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

.page-header {
    background-color: #2b6cb0;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
}

.about-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.values-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 56px;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

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

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

.approach-section {
    padding: 80px 0;
    background-color: #edf2f7;
}

.approach-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 56px;
}

.approach-steps {
    display: flex;
    gap: 24px;
}

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

.cta-about {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail {
    margin-bottom: 80px;
}

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

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

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

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

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

.service-detail-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2b6cb0;
    margin: 24px 0;
}

.warranty-section {
    padding: 60px 0;
    background-color: #f7fafc;
}

.warranty-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.warranty-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.warranty-box p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 32px;
}

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

.info-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

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

.contact-map-block {
    flex: 1;
    background-color: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-faq {
    padding: 80px 0;
    background-color: #f7fafc;
}

.contact-faq h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 56px;
}

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

.faq-item {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-action {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.action-box h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.action-box p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f7fafc;
}

.thanks-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-confirmation {
    font-size: 16px;
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 32px;
}

.thanks-next {
    text-align: left;
    margin: 40px 0;
}

.thanks-next h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.thanks-next ul {
    list-style: none;
}

.thanks-next li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    color: #2d3748;
}

.thanks-next li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

.thanks-contact {
    background-color: #edf2f7;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.thanks-contact p {
    font-size: 15px;
    color: #4a5568;
    margin: 0;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

.legal-page h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

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

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

.legal-page a {
    color: #2b6cb0;
    text-decoration: none;
}

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

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #718096;
}

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

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .ad-notice {
        display: none;
    }

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

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

    .service-card {
        width: 100%;
    }

    .testimonials-wrap {
        flex-direction: column;
    }

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

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

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

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

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

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