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

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

.header {
    background: #1a1a2e;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.ad-notice {
    font-size: 0.75rem;
    background: #ff6b6b;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav a:hover {
    color: #4ecdc4;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.intro-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.intro-card {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.intro-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.intro-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.problem-section {
    padding: 4rem 0;
}

.problem-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.problem-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.problem-card p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #555;
}

.problem-image {
    flex: 1;
    min-width: 300px;
    background: #ecf0f1;
}

.problem-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.insight-section {
    padding: 4rem 0;
    background: #1a1a2e;
    color: #fff;
}

.insight-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.insight-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    background: #2c3e50;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.insight-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.insight-card p {
    color: #ddd;
    line-height: 1.7;
}

.trust-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.trust-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.trust-card p {
    color: #555;
    line-height: 1.6;
}

.testimonials-section {
    padding: 4rem 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    border-left: 4px solid #4ecdc4;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
}

.services-preview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

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

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.service-content p {
    color: #555;
    margin-bottom: 1rem;
    flex: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.btn-select {
    background: #4ecdc4;
    color: #fff;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background: #3ab5ad;
    transform: translateY(-2px);
}

.form-section {
    padding: 4rem 0;
    background: #1a1a2e;
}

.form-card {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    text-align: center;
}

.selected-service {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #4ecdc4;
}

.selected-service p {
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.btn-submit {
    background: #4ecdc4;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background: #3ab5ad;
    transform: translateY(-2px);
}

.final-cta {
    padding: 4rem 0;
    background: #fff;
}

.cta-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
    color: #fff;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
}

.cta-card h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background: #4ecdc4;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background: #3ab5ad;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.disclaimer {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.disclaimer p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.footer-col p {
    color: #bbb;
    line-height: 1.7;
}

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

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

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

.footer-col ul li a:hover {
    color: #4ecdc4;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: #4ecdc4;
    color: #fff;
}

.btn-accept:hover {
    background: #3ab5ad;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-intro {
    padding: 4rem 0;
}

.about-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.about-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    background: #ecf0f1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.values-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

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

.mission-section {
    padding: 4rem 0;
}

.mission-card {
    background: #1a1a2e;
    color: #fff;
    padding: 3rem;
    border-radius: 12px;
}

.mission-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #4ecdc4;
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #ddd;
}

.team-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

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

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.cta-section {
    padding: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, #4ecdc4 0%, #3ab5ad 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #2c3e50;
    transform: translateY(-2px);
}

.services-full {
    padding: 4rem 0;
}

.contact-section {
    padding: 4rem 0;
}

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

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

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

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.email-display {
    color: #555;
    font-weight: 500;
}

.contact-map-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-map-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.map-placeholder {
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    min-height: 300px;
}

.map-info p {
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.7;
}

.faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 4rem 0;
}

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

.thanks-icon {
    font-size: 4rem;
    color: #4ecdc4;
    margin-bottom: 1.5rem;
}

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

.thanks-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #4ecdc4;
}

.selected-service-display p {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.thanks-content h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background: #4ecdc4;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.thanks-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-note p {
    color: #333;
    margin: 0;
}

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

.btn-secondary {
    display: inline-block;
    background: #6c757d;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.legal-page {
    padding: 4rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-date {
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 1.15rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

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

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #555;
}

.legal-content a {
    color: #4ecdc4;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

    .hero-content p {
        font-size: 1rem;
    }

    .hero {
        height: 400px;
    }

    .nav {
        gap: 1rem;
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .problem-grid,
    .about-grid {
        flex-direction: column;
    }

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

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

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

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

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

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

    .step-number {
        margin: 0 auto;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }
}
