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

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

.main-nav {
    background-color: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

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

.nav-links a {
    color: #e0e6ed;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a90e2;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f5f7fa;
}

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

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

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 520px;
}

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

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

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

.cta-primary:hover {
    background-color: #357abd;
    cursor: pointer;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #4a90e2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #4a90e2;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #4a90e2;
    color: #ffffff;
    cursor: pointer;
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image {
    flex: 1;
    background-color: #cbd5e0;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 60px;
}

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

.intro-text {
    flex: 1;
    padding: 0 20px;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2332;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.services-intro {
    background-color: #ffffff;
    padding: 80px 20px;
}

.services-intro h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a2332;
}

.section-subtitle {
    text-align: center;
    font-size: 19px;
    color: #6c7a89;
    margin-bottom: 60px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    max-width: 360px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px;
    color: #1a2332;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0 20px 20px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    margin: 20px;
}

.service-card .select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-card .select-service:hover {
    background-color: #357abd;
    cursor: pointer;
}

.split-reversed {
    display: flex;
    align-items: center;
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.split-text {
    flex: 1;
    padding: 0 60px;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2332;
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    background-color: #cbd5e0;
    overflow: hidden;
    border-radius: 8px;
    margin-left: 60px;
}

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

.more-services {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.service-row.reversed {
    flex-direction: row-reverse;
}

.service-row img {
    flex: 0 0 45%;
    border-radius: 8px;
    background-color: #cbd5e0;
    object-fit: cover;
    height: 350px;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a2332;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
}

.service-details .price {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
    display: block;
}

.service-details .select-service {
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-details .select-service:hover {
    background-color: #357abd;
    cursor: pointer;
}

.form-section {
    background-color: #f5f7fa;
    padding: 80px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a2332;
}

.form-container > p {
    font-size: 16px;
    color: #6c7a89;
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    transition: border-color 0.3s;
}

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

.service-display {
    padding: 14px 16px;
    background-color: #f8f9fa;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    color: #6c7a89;
    font-size: 15px;
}

.service-display.selected {
    background-color: #e8f4fd;
    border-color: #4a90e2;
    color: #1a2332;
    font-weight: 600;
}

.submit-btn {
    padding: 16px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #357abd;
    cursor: pointer;
}

.submit-btn:disabled {
    background-color: #cbd5e0;
    cursor: not-allowed;
}

.disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: #fff8dc;
    border-left: 4px solid #f0ad4e;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a4a2a;
}

.main-footer {
    background-color: #1a2332;
    color: #e0e6ed;
    padding: 60px 20px 30px;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #a8b2bf;
}

.footer-column a {
    display: block;
    color: #a8b2bf;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #7a8896;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #357abd;
    cursor: pointer;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
    cursor: pointer;
}

.page-hero {
    background-color: #1a2332;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #cbd5e0;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2332;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    background-color: #f5f7fa;
    padding: 80px 20px;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a2332;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-about {
    text-align: center;
    padding: 80px 20px;
    background-color: #4a90e2;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-about .cta-primary {
    background-color: #ffffff;
    color: #4a90e2;
}

.cta-about .cta-primary:hover {
    background-color: #f0f4f8;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-full {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.service-full.reversed {
    flex-direction: row-reverse;
}

.service-full img {
    flex: 0 0 45%;
    border-radius: 8px;
    background-color: #cbd5e0;
    object-fit: cover;
    height: 400px;
}

.service-content {
    flex: 1;
}

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

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

.service-content ul {
    margin: 20px 0 25px 20px;
}

.service-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.price-box .price {
    font-size: 36px;
    font-weight: 700;
    color: #4a90e2;
}

.price-box .select-service {
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.price-box .select-service:hover {
    background-color: #357abd;
    cursor: pointer;
}

.services-cta {
    text-align: center;
    padding: 60px 20px;
    background-color: #f5f7fa;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a2332;
}

.services-cta p {
    font-size: 17px;
    color: #6c7a89;
    margin-bottom: 30px;
}

.contact-info-section {
    padding: 60px 20px;
}

.contact-split {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a2332;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a2332;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.email-display {
    color: #4a5568;
    font-weight: 500;
}

.contact-image {
    flex: 1;
    background-color: #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-cta {
    text-align: center;
    padding: 80px 20px;
    background-color: #f5f7fa;
}

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

.contact-cta p {
    font-size: 17px;
    color: #6c7a89;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 80px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a2332;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: #e8f4fd;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-confirmation p {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.selected-service {
    font-size: 20px;
    font-weight: 700;
    color: #4a90e2;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a2332;
}

.next-steps ol {
    margin-left: 20px;
}

.next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

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

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a2332;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-page ul {
    margin: 15px 0 20px 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
}

.no-link {
    color: #5a6c7d;
}

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

    .hero-content {
        padding: 50px 30px;
    }

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

    .intro-split,
    .split-reversed,
    .about-split,
    .contact-split,
    .service-full {
        flex-direction: column;
    }

    .intro-image,
    .split-image {
        margin: 0 0 30px 0;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .service-row.reversed {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

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

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

    .value-item {
        flex: 1 1 100%;
    }

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