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

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

.nav-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: 1000;
}

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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 5rem 5% 5rem 8%;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a3a4a;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    background-color: #d4e4ed;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-primary-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background-color: #2c5f7c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-large:hover {
    background-color: #1e4357;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c5f7c;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2c5f7c;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.intro-section {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.intro-left {
    flex: 1;
    background-color: #e8f2f7;
}

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

.intro-right {
    flex: 1;
    padding: 5rem 8% 5rem 5%;
}

.intro-right h2 {
    font-size: 2.5rem;
    color: #1a3a4a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.reference {
    color: #2c5f7c;
    text-decoration: none;
    font-weight: 600;
}

.reference:hover {
    text-decoration: underline;
}

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

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

.section-header-center h2 {
    font-size: 2.8rem;
    color: #1a3a4a;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #666;
}

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

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

.service-info {
    flex: 1;
    padding: 2rem;
}

.service-info h3 {
    font-size: 2rem;
    color: #1a3a4a;
    margin-bottom: 1.2rem;
}

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

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

.service-info ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #555;
}

.service-info ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f7c;
    font-weight: bold;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 1.5rem;
}

.service-visual {
    flex: 1;
    background-color: #e8f2f7;
    min-height: 400px;
}

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

.trust-section {
    padding: 5rem 10%;
    background-color: #f0f6f9;
}

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

.trust-content-full h2 {
    font-size: 2.5rem;
    color: #1a3a4a;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.testimonial-section h2 {
    font-size: 2.5rem;
    color: #1a3a4a;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5f7c;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

.cta-section {
    padding: 6rem 5%;
    background-color: #2c5f7c;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e8f2f7;
    margin-bottom: 2.5rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    max-width: 550px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-content h3 {
    font-size: 2rem;
    color: #1a3a4a;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

.footer {
    background-color: #1a3a4a;
    color: #ffffff;
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e8f2f7;
}

.footer-section p {
    line-height: 1.7;
    color: #b8ccd9;
}

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

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

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

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

.references-list {
    padding-left: 1.2rem;
}

.references-list li {
    margin-bottom: 0.7rem;
}

.references-list li a {
    color: #b8ccd9;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.references-list li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    background-color: #152d3a;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.footer-bottom {
    border-top: 1px solid #2c5f7c;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #b8ccd9;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a4a;
    color: #ffffff;
    padding: 2rem 5%;
    z-index: 3000;
    border-top: 3px solid #2c5f7c;
}

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

.cookie-content p {
    flex: 1;
    line-height: 1.6;
}

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

.about-hero {
    padding: 5rem 10%;
    background-color: #f0f6f9;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    color: #1a3a4a;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
}

.about-text {
    flex: 1;
    padding-right: 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1a3a4a;
    margin-bottom: 1.5rem;
}

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

.about-image {
    flex: 1;
    background-color: #e8f2f7;
    min-height: 500px;
}

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

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

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

.values-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-container {
    display: flex;
    min-height: 70vh;
    margin-top: 2rem;
}

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

.contact-info h1 {
    font-size: 2.8rem;
    color: #1a3a4a;
    margin-bottom: 2rem;
}

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

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

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

.contact-form-section {
    flex: 1;
    padding: 5rem 5%;
    background-color: #ffffff;
}

.contact-form-section h2 {
    font-size: 2rem;
    color: #1a3a4a;
    margin-bottom: 2rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 5rem 5%;
}

.service-card-full {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 350px;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-image {
    width: 100%;
    height: 250px;
    background-color: #e8f2f7;
}

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

.service-card-content {
    padding: 2rem;
}

.service-card-content h3 {
    font-size: 1.8rem;
    color: #1a3a4a;
    margin-bottom: 1rem;
}

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

.service-card-content .price-tag {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.legal-container {
    padding: 5rem 10%;
    max-width: 1000px;
    margin: 0 auto;
}

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

.legal-container h2 {
    font-size: 2rem;
    color: #2c5f7c;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.5rem;
    color: #1a3a4a;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

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

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background-color: #f0f6f9;
}

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

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

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

.select-service {
    cursor: pointer;
}

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

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

    .hero-content,
    .intro-right,
    .about-text {
        padding: 3rem 5%;
    }

    .testimonial-grid,
    .values-grid,
    .footer-content {
        flex-direction: column;
    }

    .nav-right {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .ad-disclosure {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-header-center h2,
    .trust-content-full h2,
    .testimonial-section h2 {
        font-size: 2rem;
    }

    .service-info h3 {
        font-size: 1.5rem;
    }

    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }
}