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

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    margin-left: 1rem;
    color: #495057;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #28a745;
}

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

.section-white {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.page-header {
    padding: 3rem 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.page-header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card {
    padding: 1.5rem;
    height: 100%;
}

.service-card h4 {
    margin-bottom: 1rem;
    color: #212529;
}

.audience-card {
    padding: 2rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
}

.audience-card h5 {
    color: #28a745;
    margin-bottom: 1rem;
}

.testimonial-card {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
}

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

.testimonial-author {
    font-weight: 600;
    color: #28a745;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.footer {
    padding: 3rem 0 1rem;
    background-color: #212529;
    color: #ffffff;
}

.footer h5 {
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer a:hover {
    color: #28a745;
}

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

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #212529;
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

.cookie-consent.show {
    display: block;
}

.value-card {
    padding: 2rem;
    background: white;
    border-left: 4px solid #28a745;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
}

.benefit-item h5 {
    margin-bottom: 0.5rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

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

.process-step {
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #28a745;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-number-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #28a745;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.contact-info-box {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-info-box h5 {
    margin-bottom: 0.75rem;
}

.contact-info-box a {
    color: #28a745;
    text-decoration: none;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

.faq-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item h5 {
    margin-bottom: 0.75rem;
}

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

.success-icon {
    display: flex;
    justify-content: center;
}

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

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 1.25rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .section-white, .section-gray {
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}
