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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.brand-logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    border-left: 1px solid #e8e8e8;
    padding-left: 25px;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

.hero-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.split-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

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

.services-preview {
    padding: 90px 0;
    background-color: #f8f9fa;
}

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

.service-cards {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

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

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

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 25px 25px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.why-choose {
    padding: 90px 0;
    background-color: #ffffff;
}

.testimonials-section {
    padding: 90px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #ffffff;
}

.testimonial {
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
}

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

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    color: #bdc3c7;
}

.inquiry-section {
    padding: 90px 0;
    background-color: #f8f9fa;
}

.inquiry-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

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

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

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

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6c7d;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #bdc3c7;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #95a5a6;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    color: #95a5a6;
    font-size: 14px;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
}

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

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
}

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

.content-section.grey-bg {
    background-color: #f8f9fa;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

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

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

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

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

.service-features {
    list-style: none;
    margin-top: 25px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #2c3e50;
}

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

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

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

.cta-section {
    padding: 80px 0;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

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

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

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section .cta-primary:hover {
    background-color: #ecf0f1;
}

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

.contact-details {
    margin-top: 40px;
}

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

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

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

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    font-size: 15px;
    line-height: 1.6;
}

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

.map-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.map-section > p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: #4a5568;
}

.map-placeholder {
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27ae60;
    font-weight: 700;
}

.thanks-details {
    margin: 40px 0;
}

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

.service-confirmation {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 16px;
    color: #2c3e50;
}

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

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

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

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #4a5568;
    font-size: 15px;
}

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

    .container-split.reverse {
        flex-direction: column;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

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

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

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

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-left h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .hero-left {
        padding: 50px 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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