* {
    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: #1f2937;
    background-color: #f9fafb;
}

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

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #fbbf24;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

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

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

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

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

.hero-card {
    background-color: #ffffff;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-text {
    padding: 60px 40px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111827;
}

.hero-text p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: #1e40af;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-section {
    margin: 40px 0;
}

.intro-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.intro-card p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
}

.services-grid {
    margin: 60px 0;
}

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

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 48px;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.card-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.card-content p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.select-service {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    margin: 60px 0;
}

.form-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    max-width: 700px;
    margin: 0 auto;
}

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

.form-card > p {
    color: #6b7280;
    margin-bottom: 32px;
}

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

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

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

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

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

.submit-button {
    width: 100%;
    background-color: #1e40af;
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    margin: 60px 0;
    padding: 60px 0;
    background-color: #ffffff;
}

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

.trust-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

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

.trust-card p {
    font-size: 15px;
    color: #6b7280;
}

.disclaimer-section {
    margin: 40px 0;
    padding: 32px 0;
}

.disclaimer {
    background-color: #fef3c7;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
}

.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #374151;
    font-size: 14px;
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #3b82f6;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2563eb;
}

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

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

.page-hero {
    background-color: #1e40af;
    color: #ffffff;
    padding: 80px 0;
    margin-bottom: 60px;
}

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

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    margin: 60px 0;
}

.content-card {
    display: flex;
    gap: 48px;
    align-items: center;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

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

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

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

.card-text p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 16px;
}

.content-card .card-image {
    flex: 1;
    min-width: 300px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.values-section {
    margin: 60px 0;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #111827;
}

.values-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e40af;
}

.value-card p {
    font-size: 15px;
    color: #6b7280;
}

.mission-card {
    background-color: #eff6ff;
    padding: 48px;
    border-radius: 12px;
    margin-top: 40px;
    border: 2px solid #3b82f6;
}

.mission-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e40af;
}

.mission-card p {
    font-size: 17px;
    color: #1f2937;
    margin-bottom: 16px;
}

.services-detailed {
    margin: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    align-items: center;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    margin-bottom: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.feature-list {
    list-style: none;
    margin-bottom: 28px;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #374151;
}

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

.cta-link {
    display: inline-block;
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #1e40af;
    padding-bottom: 2px;
    transition: color 0.3s;
}

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

.cta-section {
    margin: 80px 0;
}

.cta-card {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background-color: #ffffff;
    color: #1e40af;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: transform 0.3s;
}

.cta-button-large:hover {
    transform: scale(1.05);
}

.contact-content {
    margin: 60px 0;
}

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

.contact-info-card,
.contact-details-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-info-card h2,
.contact-details-card h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #111827;
}

.contact-detail {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 24px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 24px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.info-block p {
    font-size: 15px;
    color: #374151;
    margin-bottom: 4px;
}

.info-note {
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
    margin-top: 8px;
}

.contact-cta-card {
    background-color: #eff6ff;
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #3b82f6;
}

.contact-cta-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1e40af;
}

.contact-cta-card p {
    font-size: 17px;
    color: #1f2937;
    margin-bottom: 28px;
}

.thanks-section {
    margin: 80px 0;
}

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

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

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

.lead {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.thanks-details p {
    margin-bottom: 8px;
    color: #374151;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #111827;
}

.steps-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 200px;
    padding: 24px;
    background-color: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #3b82f6;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111827;
}

.step-card p {
    font-size: 14px;
    color: #6b7280;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.button-primary {
    background-color: #1e40af;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.button-primary:hover {
    background-color: #1e3a8a;
}

.button-secondary {
    background-color: #e5e7eb;
    color: #1f2937;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.button-secondary:hover {
    background-color: #d1d5db;
}

.additional-info {
    font-size: 14px;
    color: #6b7280;
}

.legal-page {
    margin: 60px 0;
}

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

.updated {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
}

.legal-content {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1e40af;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #374151;
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

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

.legal-content a {
    color: #1e40af;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1e3a8a;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.cookie-table th {
    background-color: #f3f4f6;
    font-weight: 600;
    color: #374151;
}

.cookie-table td {
    color: #4b5563;
}

@media (max-width: 768px) {
    .nav {
        gap: 16px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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

    .service-card {
        min-width: 100%;
    }

    .content-card,
    .service-detail-card {
        flex-direction: column;
        padding: 32px;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .thanks-card {
        padding: 40px 24px;
    }

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