* {
    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: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #6b7280;
    padding: 4px 10px;
    background-color: #f3f4f6;
    border-radius: 4px;
}

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

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

.nav a:hover {
    color: #1e40af;
}

.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(30, 64, 175, 0.85);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.hero p {
    color: #f3f4f6;
    font-size: 20px;
    text-align: center;
}

.intro-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.card-intro {
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.card-intro h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.3;
}

.card-intro p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 0;
    background-color: #fff;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    min-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

.card-body {
    padding: 30px;
}

.card-body h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 15px;
}

.card-body p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 20px;
    background-color: #1e40af;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #1e3a8a;
}

.form-section {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #111827;
}

.form-intro {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 14px 20px;
    background-color: #1e40af;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1e3a8a;
}

.trust-section {
    padding: 80px 0;
    background-color: #fff;
}

.trust-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background-color: #f9fafb;
    padding: 35px;
    border-radius: 10px;
    width: calc(33.333% - 20px);
    min-width: 280px;
    border-left: 4px solid #1e40af;
}

.testimonial-card p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: #111827;
    font-weight: 600;
    font-size: 14px;
}

.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.email-text {
    color: #9ca3af;
    font-size: 14px;
}

.disclaimer {
    background-color: #1f2937;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.disclaimer p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: #1e40af;
    color: #fff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.9;
}

.page-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

.subtitle {
    font-size: 18px;
    color: #e5e7eb;
}

.about-content,
.contact-content,
.services-full {
    padding: 80px 0;
}

.content-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.content-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #e5e7eb;
}

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

.content-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

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

.method-section,
.numbers-section,
.team-section {
    margin-bottom: 60px;
}

.method-section h2,
.numbers-section h2,
.team-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #111827;
    text-align: center;
}

.method-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.method-card {
    flex: 1;
    min-width: 250px;
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid #1e40af;
}

.method-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111827;
}

.method-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.number-card {
    text-align: center;
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 10px;
    min-width: 200px;
}

.number {
    font-size: 48px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 10px;
}

.number-label {
    color: #6b7280;
    font-size: 16px;
}

.team-section p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #e5e7eb;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #111827;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
}

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

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    color: #4b5563;
    font-size: 15px;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: 700;
}

.service-ideal {
    background-color: #f0f9ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #1e40af;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    padding: 14px 30px;
    background-color: #1e40af;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: #1e3a8a;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background-color: #f9fafb;
    padding: 35px;
    border-radius: 10px;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #111827;
}

.contact-card p {
    color: #4b5563;
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.email-static {
    color: #1e40af;
    font-weight: 600;
}

.contact-note {
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
}

.contact-cta-section {
    background-color: #f0f9ff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 60px;
}

.contact-cta-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #111827;
}

.contact-cta-section p {
    color: #4b5563;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #111827;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #111827;
}

.faq-item p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

.thanks-message {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 15px;
}

.thanks-details {
    font-size: 16px;
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 30px;
}

.thanks-card p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.thanks-next h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111827;
}

.thanks-next ul {
    list-style: none;
    padding: 0;
}

.thanks-next li {
    color: #4b5563;
    font-size: 15px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.thanks-next li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition: opacity 0.3s;
}

.btn-primary {
    background-color: #1e40af;
    color: #fff;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background-color: #e5e7eb;
    color: #111827;
}

.btn-secondary:hover {
    opacity: 0.9;
}

.legal-page {
    padding: 60px 0 100px;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #111827;
}

.legal-date {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #111827;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #374151;
}

.legal-content h4 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #4b5563;
}

.legal-content p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #fff;
}

.cookie-table thead {
    background-color: #f3f4f6;
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.cookie-table td {
    padding: 12px;
    font-size: 14px;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .service-card {
        width: 100%;
    }

    .testimonial-card {
        width: 100%;
    }

    .card-intro {
        padding: 30px;
    }

    .form-card {
        padding: 30px;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .service-detail-card {
        flex-direction: column;
    }

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