body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

:root {
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --secondary-color: #6c757d;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.section-why,
.section-benefits,
.section-services,
.section-audience,
.section-testimonials,
.section-cta,
.section-mission,
.section-values,
.section-approach,
.section-commitment,
.section-process,
.section-faq,
.section-contact,
.section-next-steps,
.thank-you-section {
    padding: 80px 0;
}

.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #e8f2ff;
    border-radius: 50%;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefits-list li {
    margin-bottom: 2rem;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.5rem;
}

.audience-card {
    padding: 30px;
    background: #fff;
    border-left: 4px solid #0066cc;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.audience-card h5 {
    color: #0066cc;
    margin-bottom: 15px;
}

.testimonial-card {
    padding: 30px;
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.3rem;
}

.testimonial-card .client-name {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 15px;
}

.btn-primary {
    background-color: #0066cc;
    border-color: #0066cc;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0052a3;
    border-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

.btn-outline-primary {
    border-color: #0066cc;
    color: #0066cc;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0066cc;
    border-color: #0066cc;
    color: #fff;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #0066cc;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0066cc;
}

.nav-item.active .nav-link {
    color: #0066cc;
}

.footer {
    padding: 40px 0 20px;
}

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

.footer a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid #0066cc;
    padding: 20px;
    box-shadow: 0 -3px 20px rgba(0,0,0,0.15);
    z-index: 9999;
}

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

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

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

.value-card, .approach-item {
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.commitment-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.commitment-list li:last-child {
    border-bottom: none;
}

.service-detail h5 {
    color: #0066cc;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail ul {
    margin-bottom: 25px;
}

.process-step {
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.faq-item {
    padding: 25px;
    background: #fff;
    border-left: 4px solid #0066cc;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h5 {
    color: #0066cc;
    margin-bottom: 10px;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    padding: 12px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0,102,204,0.1);
}

.contact-info {
    padding: 20px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
}

.office-hours {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.thank-you-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thank-you-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: #e8f2ff;
    border-radius: 50%;
    margin: 0 auto;
}

.next-step-card {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #e8f2ff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

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

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
}

.legal-content h2 {
    color: #0066cc;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
}

.legal-content h5 {
    color: #333;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-content section {
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

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

    .section-why,
    .section-benefits,
    .section-services,
    .section-audience,
    .section-testimonials,
    .section-cta,
    .section-mission,
    .section-values,
    .section-approach,
    .section-commitment,
    .section-process,
    .section-faq,
    .section-contact,
    .section-next-steps,
    .thank-you-section {
        padding: 50px 0;
    }

    .page-header {
        padding: 60px 0 40px;
    }

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

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .page-title {
        font-size: 2.2rem;
    }
}
