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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

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

.btn-cookie-accept {
    background-color: #16a085;
    color: #ffffff;
}

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

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

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

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

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #16a085;
}

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

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

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

.hero-text-side h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #16a085;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #16a085;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #16a085;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #16a085;
    color: #ffffff;
}

.cta-text {
    display: inline-block;
    margin-left: 20px;
    color: #7f8c8d;
    text-decoration: none;
    font-weight: 500;
}

.cta-text:hover {
    color: #2c3e50;
}

.intro-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

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

.split-feature-left,
.split-feature-right {
    display: flex;
    min-height: 500px;
}

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

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

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

.split-feature-right {
    flex-direction: row-reverse;
}

.feature-content h3,
.feature-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.feature-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.services-highlight {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-highlight h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-card h4 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #2c3e50;
}

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

.service-price {
    padding: 0 24px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #16a085;
}

.btn-service-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service-select:hover {
    background-color: #1a252f;
}

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

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

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #16a085;
    border-radius: 4px;
}

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

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

.form-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.main-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    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: #16a085;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #16a085;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #138d75;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #7f8c8d;
    text-align: center;
}

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

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #95a5a6;
}

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

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

.footer-section ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #16a085;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

.page-hero {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-lead {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.values-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.section-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.cta-section {
    padding: 100px 40px;
    background-color: #16a085;
    text-align: center;
}

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

.cta-section p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 35px;
    opacity: 0.9;
}

.service-detail-section {
    padding: 0;
}

.service-detail-layout {
    display: flex;
    min-height: 550px;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

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

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #16a085;
    margin: 30px 0;
}

.alt-layout {
    background-color: #f8f9fa;
}

.additional-services {
    padding: 80px 40px;
    background-color: #ffffff;
}

.additional-services h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.additional-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.additional-service {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.additional-service h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.additional-service p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.contact-content-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-map-block {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-additional-info {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.contact-additional-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-additional-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 20px;
}

.service-areas-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-areas-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.region-item {
    flex: 1;
    min-width: 250px;
}

.region-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.region-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-cta-section {
    padding: 100px 40px;
    background-color: #2c3e50;
    text-align: center;
}

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

.contact-cta-section p {
    font-size: 20px;
    color: #95a5a6;
    margin-bottom: 35px;
}

.thanks-section {
    min-height: 600px;
    padding: 100px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

.thanks-details {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.thanks-details strong {
    color: #16a085;
}

.thanks-content > p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

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

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .split-feature-left,
    .split-feature-right,
    .service-detail-layout {
        flex-direction: column;
    }

    .hero-text-side,
    .feature-content,
    .service-detail-content {
        padding: 40px 30px;
    }

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

    .navigation {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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