* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #0f4c81;
}

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

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

.nav-links a:hover {
    color: #0f4c81;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #0f4c81;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.hero-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #0f4c81;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0d3d68;
}

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

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

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

.split-left,
.split-right {
    flex: 1;
}

.split-left img,
.split-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.split-right h2,
.split-left h2 {
    font-size: 36px;
    color: #0f4c81;
    margin-bottom: 25px;
    line-height: 1.3;
}

.split-right p,
.split-left p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-overview {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.services-overview h2 {
    font-size: 42px;
    color: #0f4c81;
    text-align: center;
    margin-bottom: 70px;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 250px;
}

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

.service-content {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    color: #0f4c81;
    margin-bottom: 15px;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0f4c81;
    margin-top: auto;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 25px;
    background-color: #0f4c81;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #0d3d68;
}

.approach-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 36px;
    color: #0f4c81;
    margin-bottom: 15px;
}

.form-wrapper > p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    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: #0f4c81;
}

.btn-submit {
    padding: 15px 35px;
    background-color: #0f4c81;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #0d3d68;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    color: #adb5bd;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #2a2a2a;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #adb5bd;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid #343a40;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    padding: 25px 40px;
    z-index: 1000;
    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;
    font-size: 15px;
    color: #495057;
}

.cookie-content a {
    color: #0f4c81;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #0f4c81;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #5a6268;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #0f4c81;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 18px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-service-info {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 4px;
    margin: 30px 0;
    border-left: 4px solid #0f4c81;
}

.thanks-service-info strong {
    color: #0f4c81;
}

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

    .container-split,
    .container-split.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

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

    .form-row {
        flex-direction: column;
    }

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

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