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

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

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

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

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

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

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

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

.nav-links a:hover {
    color: #3b82f6;
}

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

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

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #475569;
}

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

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

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

.cta-primary:hover {
    background-color: #2563eb;
}

.intro-section,
.methodology-section,
.services-overview,
.about-intro,
.mission-section,
.technology-section,
.team-approach {
    padding: 5rem 2rem;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #475569;
}

.image-block {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.link-cta {
    display: inline-block;
    margin-top: 1rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.link-cta:hover {
    color: #2563eb;
}

.benefits-grid {
    padding: 5rem 2rem;
    background-color: #f8fafc;
}

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

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

.benefit-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

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

.benefit-card p {
    color: #64748b;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #1a2332;
    color: #ffffff;
}

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #cbd5e1;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #475569;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #f8fafc;
    color: #1e293b;
}

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background-color: #2563eb;
}

.trust-section {
    padding: 4rem 2rem;
    background-color: #fef3c7;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #f59e0b;
    border-radius: 6px;
}

.disclaimer-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #92400e;
}

.disclaimer-box p {
    color: #78350f;
    line-height: 1.7;
}

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

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

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

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

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

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px 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: 2rem;
}

.cookie-content p {
    color: #cbd5e1;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

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

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

.page-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    text-align: center;
}

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

.page-hero .hero-content p {
    font-size: 1.3rem;
    color: #dbeafe;
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    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.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.value-card p {
    color: #64748b;
}

.services-intro {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #f8fafc;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.intro-text p {
    font-size: 1.1rem;
    color: #475569;
}

.services-grid {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-header {
    padding: 1.5rem;
    background-color: #1e293b;
    color: #ffffff;
}

.service-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #475569;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #334155;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-cta {
    display: block;
    text-align: center;
    padding: 0.9rem;
    background-color: #3b82f6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #2563eb;
}

.comparison-note {
    padding: 4rem 2rem;
    background-color: #f1f5f9;
    text-align: center;
}

.comparison-note h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.features-compare {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.compare-item {
    flex: 1 1 200px;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.compare-item p {
    color: #334155;
    font-weight: 500;
}

.disclaimer-section {
    padding: 4rem 2rem;
}

.contact-content {
    padding: 4rem 2rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #475569;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.info-block p {
    color: #475569;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-height: 400px;
}

.map-note {
    padding: 3rem 2rem;
    background-color: #f8fafc;
    text-align: center;
}

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

.map-note p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #475569;
}

.thanks-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    text-align: center;
}

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

.thanks-content p {
    font-size: 1.3rem;
    color: #d1fae5;
}

.thanks-info {
    padding: 5rem 2rem;
}

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

.info-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    padding: 2rem;
    background-color: #f8fafc;
    border-left: 4px solid #3b82f6;
    border-radius: 6px;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1e3a8a;
}

.step-item p {
    color: #475569;
    line-height: 1.7;
}

.selected-service {
    padding: 1.5rem;
    background-color: #eff6ff;
    border-radius: 6px;
    margin-bottom: 3rem;
    text-align: center;
    color: #1e3a8a;
    font-weight: 600;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #3b82f6;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2563eb;
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #1e293b;
}

.btn-secondary:hover {
    background-color: #cbd5e1;
}

.additional-resources {
    padding: 4rem 2rem;
    background-color: #f8fafc;
}

.additional-resources h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.resources-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

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

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

.resource-card p {
    margin-bottom: 1rem;
    color: #64748b;
}

.resource-card a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.resource-card a:hover {
    color: #2563eb;
}

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

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.last-updated {
    color: #64748b;
    font-style: italic;
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #334155;
}

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

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

.legal-content a {
    color: #3b82f6;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

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

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

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

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

    .service-card {
        flex: 1 1 100%;
    }

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

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

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

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