* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

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

.btn-accept:hover {
    background-color: #27ae60;
}

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

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #1a5490;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    max-width: 600px;
}

.cta-primary {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #134070;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26,84,144,0.3);
}

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

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

.trust-section {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.trust-image {
    flex: 1;
    background-color: #f0f4f8;
    overflow: hidden;
}

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

.trust-content {
    flex: 1;
    padding: 3rem;
}

.trust-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.trust-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.section-header p {
    font-size: 1.15rem;
    color: #5a6c7d;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-image {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

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

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

.service-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 1.5rem;
    display: block;
}

.btn-select {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #134070;
    transform: translateY(-2px);
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 3rem;
}

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    padding: 1rem 1.5rem;
    background-color: #f0f4f8;
    border-left: 4px solid #1a5490;
    font-weight: 500;
    color: #2c3e50;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #dfe4ea;
    border-radius: 4px;
    font-size: 1rem;
    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: #1a5490;
}

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

.btn-submit:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #f0f4f8;
    padding: 3rem 2rem;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #bdc3c7;
}

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

.selected-service-display strong {
    color: #1a5490;
}

@media (max-width: 1024px) {
    .hero-split,
    .trust-section,
    .service-card,
    .service-card.reverse,
    .contact-split {
        flex-direction: column;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

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

    .trust-content,
    .service-info {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
    }
}

.about-hero-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

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

.about-hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.methodology-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 3rem;
}

.methodology-content {
    flex: 1.5;
}

.methodology-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.methodology-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.step-info p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

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

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

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

.services-header {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.services-header h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.services-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1.2;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.service-detail-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-includes {
    margin-bottom: 2rem;
}

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #5a6c7d;
    position: relative;
}

.service-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.service-pricing-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a5490;
}

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

.services-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.services-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.contact-page-header {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.contact-page-header h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.contact-page-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.contact-info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a5490;
}

.contact-details p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 900px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.confirmation-details {
    margin-bottom: 3rem;
}

.confirmation-box {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2ecc71;
}

.confirmation-box p {
    margin: 0.5rem 0;
    color: #2c3e50;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a5490;
}

.step-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2ecc71;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

.btn-primary:hover {
    background-color: #134070;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a5490;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #1a5490;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a5490;
    color: #ffffff;
}

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

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.legal-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.legal-container ul li {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .methodology-section,
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .about-hero-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .methodology-content h2,
    .services-header h1,
    .contact-page-header h1,
    .thanks-container h1 {
        font-size: 2rem;
    }

    .service-detail-content {
        padding: 2rem;
    }

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

    .contact-info-section {
        flex-direction: column;
    }

    .step-timeline {
        gap: 1.5rem;
    }

    .step-number,
    .timeline-marker {
        width: 45px;
        height: 45px;
    }
}