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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c4a5f;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #4a4a4a;
}

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

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

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

.cta-primary:hover {
    background-color: #1f3647;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c4a5f;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #2c4a5f;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #2c4a5f;
    color: #ffffff;
}

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

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

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

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.testimonials-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.testimonials-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.testimonial-author {
    display: block;
    font-size: 15px;
    color: #6c757d;
    font-weight: 600;
}

.form-section-split {
    display: flex;
    background-color: #2c4a5f;
    color: #ffffff;
    min-height: 600px;
}

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

.form-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-content p {
    font-size: 18px;
    line-height: 1.6;
}

.form-container {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.form-container form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #2c4a5f;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 20px;
    color: #4a4a4a;
}

.values-section {
    padding: 80px 60px;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-intro {
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.service-item {
    margin-bottom: 0;
}

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

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

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

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c4a5f;
    margin-top: 24px;
}

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

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

.cta-section {
    padding: 80px 60px;
    text-align: center;
    background-color: #2c4a5f;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #2c4a5f;
}

.cta-section .cta-primary:hover {
    background-color: #f8f9fa;
}

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

.contact-info {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 0;
}

.contact-image {
    flex: 1;
    overflow: hidden;
}

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

.contact-cta {
    padding: 80px 60px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.thanks-section {
    padding: 120px 60px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a4a4a;
}

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

.legal-page ul li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #4a4a4a;
}

.legal-page a {
    color: #2c4a5f;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1f3647;
}

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

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

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

.footer-section a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 15px;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #888;
    text-align: center;
}

.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: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a4a4a;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #2c4a5f;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #e9ecef;
    color: #1a1a1a;
}

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

@media (max-width: 768px) {
    .hero-split,
    .split-section,
    .split-layout,
    .contact-split,
    .form-section-split {
        flex-direction: column;
    }

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

    .hero-content,
    .split-content,
    .service-content,
    .contact-info,
    .form-content,
    .form-container {
        padding: 40px 30px;
    }

    .hero-content h1,
    .page-header h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .split-content h2,
    .contact-info h2,
    .form-content h2 {
        font-size: 28px;
    }

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

    .nav-right {
        gap: 20px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}