* {
    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: #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: #1a3a52;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

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

.hero-left h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a3a52;
    line-height: 1.2;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #495057;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c7a3e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #245d31;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #357abd;
}

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

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

.intro-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a3a52;
}

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #495057;
}

.intro-right {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2c7a3e;
}

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

.value-card p {
    color: #495057;
}

.services-split {
    display: flex;
    min-height: 700px;
}

.services-left {
    flex: 1.2;
    padding: 4rem;
    background-color: #f8f9fa;
}

.services-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a3a52;
}

.service-list {
    margin-top: 2rem;
}

.service-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #1a3a52;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a3e;
}

.service-item p {
    color: #495057;
    margin-bottom: 1rem;
}

.select-service {
    padding: 0.75rem 1.5rem;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.services-right {
    flex: 0.8;
    padding: 4rem;
    background-color: #1a3a52;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.form-container h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-subtitle {
    color: #adb5bd;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #495057;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #ffffff;
}

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #2c7a3e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #245d31;
}

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

.testimonials-left {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

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

.testimonials-right h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a3a52;
}

.testimonial {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid #4a90e2;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #495057;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #6c757d;
    font-style: normal;
}

.final-cta {
    padding: 5rem 2rem;
    background-color: #2c5f7d;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.final-cta p {
    font-size: 1.25rem;
    color: #e9ecef;
    margin-bottom: 2rem;
}

.main-footer {
    background-color: #1a3a52;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column p {
    color: #adb5bd;
    line-height: 1.8;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #495057;
    text-align: center;
    color: #adb5bd;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #4a90e2;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #245d31;
}

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

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

.page-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7d 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: #e9ecef;
}

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

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

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

.service-detail-left h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a3a52;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c7a3e;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style-position: inside;
    margin-top: 1.5rem;
}

.service-features li {
    margin-bottom: 0.75rem;
    color: #495057;
    padding-left: 1rem;
}

.service-detail-right {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.services-cta {
    padding: 4rem 2rem;
    background-color: #1a3a52;
    text-align: center;
}

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

.services-cta-content p {
    font-size: 1.1rem;
    color: #e9ecef;
    margin-bottom: 2rem;
}

.about-split {
    display: flex;
    min-height: 550px;
}

.about-left {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

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

.about-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a3a52;
}

.about-right p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #495057;
}

.mission-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

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

.mission-left {
    flex: 1;
    overflow: hidden;
}

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

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

.mission-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a3a52;
}

.mission-right p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #495057;
}

.values-grid {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.values-container-about {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.value-item p {
    color: #495057;
}

.stats-split {
    display: flex;
    min-height: 400px;
    background-color: #2c5f7d;
}

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

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

.stats-left p {
    font-size: 1.1rem;
    color: #e9ecef;
}

.stats-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #e9ecef;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a90e2;
}

.approach-step p {
    color: #495057;
}

.about-cta {
    padding: 4rem 2rem;
    background-color: #1a3a52;
    text-align: center;
}

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

.about-cta-content p {
    font-size: 1.1rem;
    color: #e9ecef;
    margin-bottom: 2rem;
}

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

.contact-left {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
}

.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a3a52;
}

.contact-info-block {
    margin-bottom: 2rem;
}

.contact-info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c7a3e;
}

.contact-info-block p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
}

.contact-right {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.map-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a3a52;
}

.map-section p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 2rem;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 1.25rem;
    color: #6c757d;
}

.contact-cta {
    padding: 4rem 2rem;
    background-color: #2c5f7d;
    text-align: center;
}

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

.contact-cta-content p {
    font-size: 1.1rem;
    color: #e9ecef;
    margin-bottom: 2rem;
}

.thanks-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

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

.thanks-content > p {
    font-size: 1.5rem;
    color: #495057;
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: #1a3a52;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.35rem;
    color: #2c5f7d;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #495057;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: #495057;
    line-height: 1.8;
}

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

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .services-split,
    .testimonials-split,
    .service-detail-split,
    .about-split,
    .mission-split,
    .stats-split,
    .contact-split {
        flex-direction: column;
    }

    .service-detail-split.reverse,
    .mission-split.reverse {
        flex-direction: column;
    }

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

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

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

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

    .thanks-content h1 {
        font-size: 2rem;
    }
}