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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

.hero-card {
    display: flex;
    min-height: 600px;
    background-color: #f9fafb;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 520px;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    cursor: pointer;
}

.cta-secondary {
    display: inline-block;
    background-color: #7c3aed;
    color: #ffffff;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #6d28d9;
    cursor: pointer;
}

.intro-cards {
    padding: 80px 0;
    background-color: #ffffff;
}

.card-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

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

.info-card p {
    color: #6b7280;
    font-size: 16px;
}

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

.services-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 16px;
}

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

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

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

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.service-content p {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 20px;
}

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

.select-service {
    width: 100%;
    background-color: #10b981;
    color: #ffffff;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #059669;
    cursor: pointer;
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

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

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1d4ed8;
    cursor: pointer;
}

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

.trust-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 56px;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

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

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

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

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
    color: #d1d5db;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-disclaimer {
    padding: 24px;
    background-color: #1f2937;
    border-radius: 8px;
    margin-bottom: 32px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    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: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

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

.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;
    font-size: 14px;
    color: #d1d5db;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cookie-btn:hover {
    cursor: pointer;
}

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

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

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

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

.page-header {
    padding: 80px 0 40px;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: #6b7280;
}

.services-detail {
    padding: 60px 0;
}

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

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

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

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

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

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

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

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

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

.about-card {
    display: flex;
    gap: 48px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
}

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

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    margin-bottom: 80px;
}

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background-color: #f9fafb;
    border-radius: 12px;
}

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

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

.approach-section {
    margin-bottom: 80px;
}

.approach-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
}

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

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

.stats-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 220px;
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

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

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 48px;
    margin-bottom: 80px;
}

.contact-info-card {
    flex: 1;
}

.contact-info-card h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 32px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.map-placeholder-content {
    text-align: center;
}

.map-placeholder-content p {
    margin-top: 16px;
    font-size: 16px;
    color: #6b7280;
}

.additional-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 32px;
}

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

.faq-card {
    flex: 1;
    min-width: 280px;
    padding: 28px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

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

.thanks-section {
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

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

.thanks-card > p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.service-confirmation {
    padding: 20px;
    background-color: #f0fdf4;
    border-radius: 8px;
    margin-bottom: 48px;
}

.service-confirmation p {
    font-size: 16px;
    color: #166534;
}

.next-steps {
    margin-bottom: 48px;
}

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

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 220px;
    padding: 28px;
    background-color: #f9fafb;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    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: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

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

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

.legal-section {
    padding: 60px 0;
}

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-top: 48px;
    margin-bottom: 16px;
}

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

.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
    margin-top: 24px;
    margin-bottom: 8px;
}

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

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

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

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

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

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

    .nav-links a {
        font-size: 14px;
    }

    .hero-card {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 40px 24px;
    }

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

    .service-detail-card,
    .service-detail-card.reverse,
    .about-card,
    .contact-layout {
        flex-direction: column;
    }

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