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

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-notice {
    background-color: #fef3c7;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #92400e;
    border: 1px solid #fcd34d;
}

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

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

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

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ffffff" opacity="0.05" width="100%" height="100%"/></svg>');
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 3rem 2rem;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
}

.intro-cards {
    padding: 5rem 0;
    background-color: #ffffff;
}

.card-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.info-card.highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border-color: #fbbf24;
}

.info-card h2,
.info-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.info-card p {
    color: #475569;
    line-height: 1.8;
}

.service-overview {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid #e2e8f0;
}

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

.service-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.ribbon {
    position: absolute;
    top: 15px;
    right: -5px;
    background: #2563eb;
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px 0 0 4px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1.5rem 0;
}

.select-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: #1d4ed8;
    transform: scale(1.02);
}

.process-card {
    padding: 5rem 0;
    background: white;
}

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

.process-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e0e7ff 100%);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    border-left: 4px solid #2563eb;
}

.step-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.process-step p {
    color: #475569;
    line-height: 1.6;
}

.trust-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.trust-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.trust-text {
    flex: 2;
    min-width: 300px;
}

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

.trust-text p {
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.trust-stats {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.form-intro {
    color: #64748b;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #334155;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: scale(1.02);
}

.disclaimer-section {
    padding: 4rem 0;
    background: #fffbeb;
}

.disclaimer-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #f59e0b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.disclaimer-card p {
    color: #78350f;
    line-height: 1.8;
}

.main-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

.btn-accept:hover {
    background-color: #059669;
    transform: scale(1.05);
}

.btn-reject {
    background-color: #64748b;
    color: white;
}

.btn-reject:hover {
    background-color: #475569;
    transform: scale(1.05);
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-intro {
    padding: 5rem 0;
    background: white;
}

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

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

.content-card p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.expertise-section {
    padding: 5rem 0;
    background: white;
}

.expertise-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.expertise-text {
    flex: 1.5;
    min-width: 300px;
}

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

.expertise-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.expertise-list {
    flex: 1;
    min-width: 280px;
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 12px;
}

.expertise-list h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.expertise-list ul {
    list-style: none;
}

.expertise-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
    line-height: 1.6;
}

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

.approach-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #e0e7ff 100%);
}

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

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #2563eb;
}

.approach-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.approach-card p {
    color: #64748b;
    line-height: 1.7;
}

.how-we-work {
    padding: 5rem 0;
    background: white;
}

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

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

.work-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.services-detailed {
    padding: 5rem 0;
    background: white;
}

.service-detail-card {
    background: white;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.service-detail-card.featured-service {
    border-color: #2563eb;
}

.service-header {
    background: linear-gradient(135deg, #f1f5f9 0%, #e0e7ff 100%);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-header h2 {
    color: #1e293b;
    font-size: 2rem;
    margin: 0;
}

.price-tag {
    background: #2563eb;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 700;
}

.service-body {
    padding: 2.5rem;
}

.service-body p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-body h4 {
    color: #1e293b;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.service-body ul {
    margin-bottom: 2rem;
}

.service-body li {
    color: #64748b;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.service-body li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    color: #2563eb;
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
}

.contact-detail p {
    color: #475569;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.map-overlay {
    padding: 3rem;
    text-align: center;
}

.map-overlay p {
    color: #1e40af;
    font-size: 1.1rem;
    line-height: 1.8;
}

.faq-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-card p {
    color: #64748b;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e0e7ff 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

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

.thanks-card h1 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.thanks-message {
    color: #475569;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.request-summary {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.request-summary h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.request-summary p {
    color: #475569;
    margin-bottom: 0.5rem;
}

.next-steps {
    background: #fffbeb;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.next-steps h3 {
    color: #92400e;
    margin-bottom: 1rem;
}

.next-steps ol {
    color: #78350f;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
}

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

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
}

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

.btn-secondary:hover {
    background-color: #e2e8f0;
    transform: scale(1.05);
}

.legal-page {
    padding: 5rem 0;
    background: white;
}

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

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

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

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

.legal-content h4 {
    color: #475569;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .service-card {
        width: 100%;
    }

    .card-grid,
    .services-grid,
    .process-grid,
    .values-grid,
    .approach-grid,
    .faq-grid {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .thanks-card {
        padding: 2.5rem 1.5rem;
    }

    .thanks-card h1 {
        font-size: 1.8rem;
    }
}