* {
    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: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    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: 2px solid #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    height: 600px;
    background-color: #f8f9fa;
}

.hero-image-container {
    flex: 1;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-text-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-text-container p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.95;
}

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

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

.content-split {
    display: flex;
    min-height: 500px;
    margin: 4rem 0;
}

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

.split-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.split-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.services-showcase {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-intro p {
    font-size: 1.1rem;
    color: #555;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.contact-form-section {
    padding: 5rem 4rem;
    background-color: #2c3e50;
}

.form-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.form-description {
    flex: 1;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-description h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e8e8e8;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 4rem;
    background-color: #1a1a1a;
    color: #ffffff;
    gap: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.page-hero-split {
    display: flex;
    height: 450px;
    background-color: #f8f9fa;
}

.hero-text-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #34495e;
    color: #ffffff;
}

.hero-text-left h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text-left p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1.5;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.page-intro-centered {
    text-align: center;
    padding: 5rem 4rem 3rem;
    background-color: #f8f9fa;
}

.page-intro-centered h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.page-intro-centered p {
    font-size: 1.2rem;
    color: #555;
}

.services-detailed {
    background-color: #ffffff;
    padding: 3rem 4rem 5rem;
}

.service-detail-split {
    display: flex;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5rem;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.service-price-info {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 600;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.btn-service-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

.contact-info-section {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-info-section > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.contact-image-section {
    flex: 1;
    background-color: #ecf0f1;
}

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

.thanks-page-centered {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.service-confirmation {
    font-weight: 600;
    color: #2c3e50;
    background-color: #ecf0f1;
    padding: 1rem;
    border-radius: 4px;
}

.btn-back-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

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

.legal-page {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .header-split {
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split,
    .content-split,
    .content-split.reverse,
    .service-card-split,
    .service-card-split.reverse-card,
    .form-container-split,
    .page-hero-split,
    .service-detail-split,
    .service-detail-split.reverse-card,
    .contact-page-split {
        flex-direction: column;
    }

    .hero-split {
        height: auto;
    }

    .hero-text-container,
    .split-text,
    .service-info,
    .form-description,
    .hero-text-left,
    .service-detail-content,
    .contact-info-section {
        padding: 2.5rem;
    }

    .services-showcase {
        padding: 3rem 2rem;
    }

    .footer-split {
        flex-direction: column;
        padding: 3rem 2rem;
    }

    .hero-text-container h1,
    .hero-text-left h1,
    .page-intro-centered h1,
    .contact-info-section h1,
    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .split-text h2,
    .section-intro h2,
    .form-description h2 {
        font-size: 1.8rem;
    }
}