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

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

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

.main-nav {
    background-color: #1a2332;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-disclaimer {
    font-size: 0.75rem;
    color: #94a3b8;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
}

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

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #60a5fa;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

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

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 1.5rem;
}

.problem-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item {
    padding: 2rem;
    background-color: #f1f5f9;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.problem-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.problem-item p {
    color: #475569;
    line-height: 1.7;
}

.insight-section {
    padding: 5rem 0;
    background-color: #1e293b;
    color: #e2e8f0;
}

.insight-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.insight-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

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

.approach-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #667eea;
}

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

.services-preview {
    padding: 4rem 0;
    background-color: #ffffff;
    text-align: center;
}

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

.services-preview p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.link-inline {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #667eea;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #764ba2;
}

.testimonials-section {
    padding: 5rem 0;
    background-color: #667eea;
    color: #ffffff;
}

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

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

.testimonial {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

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

.form-section p {
    text-align: center;
    margin-bottom: 3rem;
    color: #475569;
    font-size: 1.05rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

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

.disclaimer {
    font-size: 0.9rem;
    color: #92400e;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #1a2332;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.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: background-color 0.3s;
}

.btn-accept {
    background-color: #667eea;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #5568d3;
}

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

.btn-reject:hover {
    background-color: #475569;
}

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

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0.95;
}

.about-intro {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

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

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.value-item p {
    color: #475569;
    line-height: 1.7;
}

.history-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

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

.team-approach {
    padding: 5rem 0;
    background-color: #f8fafc;
}

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

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.step-item p {
    color: #475569;
    line-height: 1.7;
}

.cta-section {
    padding: 4rem 0;
    background-color: #667eea;
    color: #ffffff;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-list {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.service-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.service-features {
    list-style: none;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-price {
    flex-shrink: 0;
    text-align: center;
    min-width: 200px;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.btn-service {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-service:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.pricing-info {
    padding: 3rem 0;
    background-color: #ffffff;
}

.pricing-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.pricing-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.contact-info-block {
    flex: 1 1 300px;
}

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

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

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

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

.no-link-email {
    color: #475569;
    font-weight: 600;
}

.contact-text-block {
    flex: 1 1 400px;
}

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

.contact-text-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1rem;
}

.location-info {
    padding: 3rem 0;
    background-color: #ffffff;
}

.location-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.location-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1rem;
}

.faq-contact {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

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

.thanks-section {
    padding: 6rem 0;
    background-color: #f8fafc;
    min-height: 50vh;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content .lead-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.thanks-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #475569;
}

#service-confirmation {
    font-weight: 600;
    color: #667eea;
    margin-bottom: 2rem;
}

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

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

.btn-primary {
    background-color: #667eea;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #64748b;
    color: #ffffff;
}

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

.legal-page {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 6px;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #334155;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.legal-page a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid #667eea;
}

.legal-page a:hover {
    color: #5568d3;
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

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

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

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

    .testimonial {
        flex: 1 1 100%;
    }

    .service-card {
        flex-direction: column;
    }

    .service-price {
        width: 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}