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

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

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7d;
    text-decoration: none;
}

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

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

.nav-right a:hover {
    color: #2c5f7d;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    background-color: #f8f9fa;
}

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

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 125, 0.7), rgba(44, 62, 80, 0.5));
}

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

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f7d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.split-section {
    display: flex;
    align-items: center;
    min-height: 500px;
}

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

.split-text {
    flex: 1;
    padding: 4rem 5%;
}

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

.split-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.split-visual {
    flex: 1;
    background-color: #e8ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.services-grid-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.services-grid-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 2rem);
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin: 0 1.5rem 1rem;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5f7d;
    margin: 1rem 1.5rem;
}

.btn-select {
    margin: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #2c5f7d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.form-bg {
    width: 100%;
    height: 100%;
}

.form-container {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

#contactForm input,
#contactForm textarea {
    padding: 1rem;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #2c5f7d;
}

#contactForm input[readonly] {
    background-color: #e8ecef;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2c5f7d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1a4a60;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #2c5f7d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 3rem 5%;
    background-color: #2c3e50;
    color: #ecf0f1;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

.disclaimer-footer {
    padding: 2rem 5%;
    background-color: #1a252f;
    color: #95a5a6;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-hero-split {
    background-color: #2c5f7d;
    padding: 5rem 5%;
    text-align: center;
}

.hero-content-page {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-page h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-content-page p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.values-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.value-card {
    flex: 0 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c5f7d;
    margin-bottom: 1rem;
}

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

.cta-about {
    padding: 5rem 5%;
    background-color: #2c5f7d;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.services-detail-section {
    padding: 4rem 5%;
}

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    align-items: center;
}

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

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

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e8ecef;
}

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

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

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f7d;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5a6c7d;
}

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

.contact-split-section {
    display: flex;
    min-height: 500px;
}

.contact-info-block {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: #2c5f7d;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #e8ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.location-section {
    padding: 4rem 5%;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.location-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.location-section p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

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

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

.thanks-content h1 {
    font-size: 3rem;
    color: #2c5f7d;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-note {
    font-weight: 600;
    color: #2c5f7d;
}

.legal-content {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-date {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

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

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

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

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 0 1 100%;
    }

    .form-section-split {
        flex-direction: column;
    }

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

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

    .contact-split-section {
        flex-direction: column;
    }

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

    .value-card {
        flex: 0 1 100%;
    }

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