/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.8rem;
    color: #1a1a2e;
}

h2 {
    font-size: 2.2rem;
    color: #16213e;
}

h3 {
    font-size: 1.6rem;
    color: #0f3460;
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    padding: 0.6rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

/* Header Split Layout */
.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f3460;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    gap: 2.5rem;
}

.header-right a {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.header-right a:hover {
    color: #e94560;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f5f5f5;
}

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

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

.hero-left p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    background-color: #2d3a4f;
    position: relative;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e94560;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #d63651;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(233, 69, 96, 0.3);
}

/* Intro Split Section */
.intro-split {
    display: flex;
    min-height: 70vh;
}

.intro-image {
    flex: 1;
    background-color: #e8e8e8;
    position: relative;
}

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

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

.intro-text h2 {
    margin-bottom: 1.5rem;
    color: #0f3460;
}

.intro-text p {
    font-size: 1.08rem;
    color: #4a5568;
    line-height: 1.8;
}

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

/* Services Section */
.services-section {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #16213e;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    min-height: 450px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-image {
    flex: 1;
    background-color: #e8e8e8;
    position: relative;
}

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

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

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

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e94560;
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #0f3460;
    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: #16213e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(15, 52, 96, 0.3);
}

/* Form Section Split */
.form-section-split {
    display: flex;
    min-height: 80vh;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #0f3460;
    color: #ffffff;
}

.form-left h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.form-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

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

.selected-service-display {
    background-color: #e8f5e9;
    padding: 1rem 1.5rem;
    border-left: 4px solid #4caf50;
    margin-bottom: 2rem;
    border-radius: 4px;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display h4 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.selected-service-display p {
    color: #1b5e20;
    margin-bottom: 0;
    font-weight: 600;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background-color: #e94560;
    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: #d63651;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(233, 69, 96, 0.3);
}

/* Trust Section Split */
.trust-split {
    display: flex;
    min-height: 65vh;
}

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

.trust-text h2 {
    margin-bottom: 1.5rem;
    color: #0f3460;
}

.trust-text p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.trust-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.citation {
    color: #e94560;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #16213e;
    color: #ffffff;
    padding: 4rem 4rem 2rem 4rem;
}

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

.footer-column {
    flex: 1;
}

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

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

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

.footer-column a {
    display: block;
    margin-bottom: 0.7rem;
    color: #d0d0d0;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #e94560;
}

.disclaimer {
    background-color: #0f1826;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.disclaimer p {
    font-size: 0.85rem;
    color: #c0c0c0;
    margin-bottom: 0;
    line-height: 1.6;
}

.references {
    background-color: #0f1826;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.references h4 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.references p {
    font-size: 0.9rem;
    color: #c0c0c0;
    margin-bottom: 0.5rem;
}

.references a {
    color: #66b2ff;
}

.references a:hover {
    color: #3399ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #16213e;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #66b2ff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #4caf50;
    color: #ffffff;
}

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

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

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

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 60vh;
    background-color: #f5f5f5;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #0f3460;
    color: #ffffff;
}

.hero-content-left h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.hero-content-left p {
    font-size: 1.15rem;
    color: #e0e0e0;
}

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

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

/* About Content Split */
.about-content-split {
    display: flex;
    min-height: 70vh;
}

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

.about-text-right h2 {
    margin-bottom: 1.5rem;
    color: #0f3460;
}

.about-text-right p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.about-image-left {
    flex: 1;
    background-color: #e8e8e8;
}

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

/* Values Split */
.values-split {
    display: flex;
    min-height: 70vh;
}

.values-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

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

.values-text h2 {
    margin-bottom: 1.5rem;
    color: #0f3460;
}

.values-text p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

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

/* Mission Split */
.mission-split {
    display: flex;
    min-height: 70vh;
}

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

.mission-left h2 {
    margin-bottom: 1.5rem;
    color: #0f3460;
}

.mission-left p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.mission-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #16213e;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e94560;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #d0d0d0;
}

/* Services Detailed */
.services-detailed {
    padding: 0;
}

.service-detail-split {
    display: flex;
    min-height: 600px;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #0f3460;
}

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

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e94560;
    margin: 1.5rem 0;
}

/* CTA Section Split */
.cta-section-split {
    display: flex;
    min-height: 50vh;
    background-color: #f8f9fa;
}

.cta-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #0f3460;
    color: #ffffff;
}

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

.cta-left p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.cta-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #16213e;
}

.cta-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background-color: #e94560;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background-color: #d63651;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 69, 96, 0.4);
}

/* Contact Hero Split */
.contact-hero-split {
    display: flex;
    min-height: 60vh;
}

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

.contact-hero-left h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.contact-hero-left p {
    font-size: 1.15rem;
    color: #e0e0e0;
}

.contact-hero-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

/* Contact Content Split */
.contact-content-split {
    display: flex;
    min-height: 75vh;
}

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

.contact-info-left h2 {
    margin-bottom: 2rem;
    color: #0f3460;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #16213e;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-map-right {
    flex: 1;
    background-color: #e8e8e8;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thanks Section Split */
.thanks-section-split {
    display: flex;
    min-height: 80vh;
}

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

.thanks-content-left h1 {
    color: #0f3460;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-content-left p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-left: 4px solid #4caf50;
    margin: 2rem 0;
    border-radius: 4px;
    display: none;
}

.service-confirmation.active {
    display: block;
}

.service-confirmation h3 {
    color: #2e7d32;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.service-confirmation p {
    color: #1b5e20;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.15rem;
}

.thanks-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.2rem;
    background-color: #0f3460;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #16213e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(15, 52, 96, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.2rem;
    background-color: transparent;
    color: #0f3460;
    border: 2px solid #0f3460;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #0f3460;
    color: #ffffff;
    transform: translateY(-2px);
}

.thanks-image-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem 4rem;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f3460;
    border-bottom: 3px solid #e94560;
    padding-bottom: 1rem;
}

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

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

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

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

.legal-content ul li {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: #e94560;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #d63651;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #0f3460;
}

.cookies-table td {
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .trust-split,
    .page-hero-split,
    .about-content-split,
    .values-split,
    .mission-split,
    .service-detail-split,
    .cta-section-split,
    .contact-hero-split,
    .contact-content-split,
    .thanks-section-split {
        flex-direction: column;
    }

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

    .header-split {
        padding: 1.2rem 2rem;
    }

    .header-right {
        gap: 1.5rem;
    }

    .hero-left,
    .intro-text,
    .service-content,
    .form-left,
    .form-right,
    .trust-text,
    .hero-content-left,
    .about-text-right,
    .values-text,
    .mission-left,
    .mission-right,
    .service-detail-content,
    .cta-left,
    .cta-right,
    .contact-hero-left,
    .contact-info-left,
    .thanks-content-left {
        padding: 3rem 2rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

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

    .legal-content {
        padding: 2rem;
        margin: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .header-right {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-end;
    }

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

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