* {
    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: #ffffff;
}

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

.header-main {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

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

.nav-primary {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-text {
    flex: 1;
    padding: 80px 70px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.services-showcase {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-center h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 20px;
    color: #7f8c8d;
}

.service-grid-split {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card {
    display: flex;
    background: #ffffff;
    margin-bottom: 2px;
    min-height: 380px;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.btn-service {
    align-self: flex-start;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-container {
    flex: 1;
    padding: 80px 70px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    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: #3498db;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px 38px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #34495e;
    transform: translateY(-2px);
}

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

.trust-section h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

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

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.footer-main {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 70px 0 30px;
}

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

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

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    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;
    font-size: 15px;
    line-height: 1.6;
    min-width: 300px;
}

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

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

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

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

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

.btn-cookie.reject:hover {
    background: #6c7a7b;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card,
    .form-section-split {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .hero-image,
    .intro-image,
    .service-image,
    .form-visual {
        min-height: 400px;
    }

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

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

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

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

    .intro-text h2,
    .form-container h2 {
        font-size: 32px;
    }

    .section-header-center h2,
    .trust-section h2 {
        font-size: 36px;
    }

    .service-info h3 {
        font-size: 26px;
    }

    .nav-primary {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.page-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.content-split {
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.content-text {
    flex: 1;
    padding: 60px 70px;
}

.content-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.content-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.content-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.values-section h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.approach-split {
    display: flex;
    align-items: stretch;
    background: #ffffff;
}

.approach-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.approach-text {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.process-step h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.team-section {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.team-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.team-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    max-width: 900px;
    margin: 0 auto 20px;
}

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

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

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

.service-detail-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 35px;
    color: #2c3e50;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

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

.timeline-note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 25px;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

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

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

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ecf0f1;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #2c3e50;
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
}

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

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-details > p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 50px;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-note {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
}

.contact-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 600px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.response-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.response-section h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

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

.response-item {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background: #ffffff;
    border-radius: 8px;
}

.response-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 22px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 60px;
}

.confirmation-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    text-align: left;
}

.confirmation-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

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

.step-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

.selected-service-info {
    padding: 25px;
    background: #e8f5e9;
    border-radius: 6px;
    margin-bottom: 40px;
}

.selected-service-info p {
    font-size: 17px;
    color: #2c3e50;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 38px;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
}

.additional-info {
    text-align: center;
}

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

.legal-content strong {
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .content-split,
    .approach-split,
    .contact-grid {
        flex-direction: column;
    }

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

    .contact-visual,
    .content-image,
    .approach-image,
    .service-detail-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 38px;
    }

    .thanks-content h1 {
        font-size: 42px;
    }

    .confirmation-box {
        padding: 30px;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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