* {
    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;
    overflow-x: hidden;
}

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

.header-main {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-main {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav-main a:hover {
    color: #3498db;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 4px 10px;
    border-radius: 4px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
}

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

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

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

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

.cta-hero {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background: #2980b9;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #d5dbdb;
}

.intro-split {
    display: flex;
}

.intro-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #bdc3c7;
}

.intro-text {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a252f;
}

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

.services-preview {
    background: #ecf0f1;
    padding: 100px 60px;
}

.services-content {
    max-width: 1400px;
    margin: 0 auto;
}

.services-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
}

.service-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

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

.service-card h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    color: #1a252f;
}

.service-card p {
    padding: 0 24px;
    font-size: 16px;
    color: #566573;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    padding: 20px 24px 24px;
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
}

.process-split {
    display: flex;
}

.process-text {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.process-text h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a252f;
}

.process-step {
    margin-bottom: 32px;
}

.process-step strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

.process-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #bdc3c7;
}

.extended-services {
    padding: 100px 60px;
    background: #2c3e50;
    color: #fff;
}

.extended-services h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.extended-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.extended-item {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 40px 32px;
    border-radius: 8px;
}

.extended-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.extended-item p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.extended-item .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #52c787;
}

.testimonials-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.testimonials-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 36px 32px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.testimonial cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.form-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-split {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.form-intro {
    flex: 1;
    color: #fff;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.form-wrapper {
    flex: 1;
    background: #fff;
    padding: 48px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid #d5dbdb;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: #27ae60;
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

.guarantee-split {
    display: flex;
}

.guarantee-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #bdc3c7;
}

.guarantee-content {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.guarantee-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a252f;
}

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

.footer-main {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
}

.footer-col a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

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

.disclaimer {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    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;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 60px;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.about-split {
    display: flex;
}

.about-text {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a252f;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #566573;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #bdc3c7;
}

.team-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.team-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a252f;
}

.team-member .role {
    display: block;
    font-size: 14px;
    color: #3498db;
    margin-bottom: 16px;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    color: #566573;
    line-height: 1.7;
}

.values-split {
    display: flex;
}

.values-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #bdc3c7;
}

.values-text {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.values-text h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a252f;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 17px;
    padding: 16px 0 16px 36px;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    color: #566573;
    line-height: 1.6;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.numbers-section {
    padding: 100px 60px;
    background: #2c3e50;
    color: #fff;
}

.numbers-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.numbers-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.number-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.number-item .number {
    display: block;
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #52c787;
}

.number-item .label {
    display: block;
    font-size: 16px;
    opacity: 0.9;
}

.approach-split {
    display: flex;
}

.approach-text {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a252f;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #566573;
    line-height: 1.8;
}

.approach-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #bdc3c7;
}

.service-detail-split {
    display: flex;
    margin-bottom: 0;
}

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

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #bdc3c7;
}

.service-detail-content {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #566573;
    line-height: 1.8;
}

.price-large {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 32px 0 12px;
}

.price-note {
    font-size: 14px;
    color: #7f8c8d;
}

.cta-section {
    padding: 100px 60px;
    background: #3498db;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #3498db;
    padding: 16px 48px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 17px;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

.contact-split {
    display: flex;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

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

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    color: #566573;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    background-color: #bdc3c7;
}

.faq-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #fff;
    padding: 32px 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

.thanks-section {
    padding: 120px 60px;
    background: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #566573;
    line-height: 1.7;
}

#selectedService {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 24px;
}

.btn-back {
    display: inline-block;
    margin-top: 40px;
    background: #3498db;
    color: #fff;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-back:hover {
    background: #2980b9;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
    background: #fff;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #566573;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #566573;
    line-height: 1.7;
}

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

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

.legal-update {
    margin-top: 48px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

@media (max-width: 992px) {
    .hero-split,
    .intro-split,
    .process-split,
    .guarantee-split,
    .about-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .contact-split,
    .form-container-split {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-text,
    .process-text,
    .guarantee-content,
    .about-text,
    .values-text,
    .approach-text,
    .service-detail-content,
    .contact-info,
    .form-intro {
        padding: 60px 40px;
    }

    .hero-image,
    .intro-image,
    .process-image,
    .guarantee-image,
    .about-image,
    .values-image,
    .approach-image,
    .service-detail-image,
    .contact-image {
        min-height: 400px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-main {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-main.active {
        display: flex;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }
}

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

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

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

    .service-cards,
    .extended-grid,
    .testimonials-wrapper,
    .team-grid,
    .numbers-grid {
        gap: 20px;
    }
}