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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #78350f;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-section {
    background-color: var(--bg-white);
    padding: 80px 24px;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.hero-text p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background-color: var(--bg-light);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

.cta-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    text-decoration: none;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    text-decoration: none;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.benefits-cards {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}

.benefits-cards h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 56px;
    color: var(--secondary-color);
}

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

.benefit-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-preview {
    background-color: var(--bg-white);
    padding: 80px 24px;
}

.services-preview h2,
.services-detail h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 56px;
}

.service-cards {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 320px;
    max-width: 400px;
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-color: var(--primary-color);
}

.service-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--bg-light);
}

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

.service-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.service-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 24px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
}

.select-service {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.select-service:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-section {
    background-color: var(--bg-light);
    padding: 80px 24px;
}

.form-container {
    max-width: 680px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.form-intro p {
    color: var(--text-light);
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.trust-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.trust-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 56px;
}

.trust-stats {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    color: #cbd5e1;
}

.main-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p,
.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

.disclaimer {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

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

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

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

.cookie-accept {
    background-color: var(--success-color);
    color: white;
}

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

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #cbd5e1;
}

.about-content,
.services-detail {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}

.about-section {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 17px;
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

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

.values-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 14px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.approach-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

.approach-steps {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 240px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.team-section p {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.7;
    font-size: 17px;
}

.team-section img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    display: block;
    object-fit: cover;
    background-color: var(--bg-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .cta-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.comparison-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 24px;
}

.comparison-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.comparison-table {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background-color: var(--bg-light);
}

.contact-info-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}

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

.contact-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.contact-detail {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.map-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 80px;
    text-align: center;
}

.map-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.map-section p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 17px;
}

.map-placeholder {
    background-color: var(--bg-light);
}

.map-placeholder img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.faq-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    background-color: var(--bg-white);
    border-radius: 16px;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

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

.faq-item {
    flex: 1 1 calc(50% - 14px);
    min-width: 320px;
    padding: 28px;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

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

.thanks-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.selected-service-display {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: var(--secondary-color);
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-list .step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
}

.step-list .step-num {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-list .step-item p {
    margin: 0;
    color: var(--text-dark);
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-content li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

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

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

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

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

    .about-section {
        flex-direction: column;
    }

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

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

    .benefit-card,
    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }
}