:root {
    --indigo: #008207;
    --teal: #00d1b2;
    --purple: #0dad22;
    --pink: #ff6b8b;
    --orange: #ff9a3d;
    --blue: #2d87bb;
    --dark: #1c2e1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --border-radius: 12px;
    --box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    background-color: #f9f9ff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.text-gradient {
    background: linear-gradient(90deg, var(--indigo), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.8rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--indigo), var(--purple));
    transition: var(--transition);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--indigo);
}

.btn {
    font-weight: 700;
    border-radius: 50px;
    padding: 0.5rem 1.75rem;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--indigo), var(--purple));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(75, 0, 130, 0.3);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--indigo);
    transform: translateY(-3px);
}

.hero-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #1f2e1a 0%, #008221 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 90%;
    margin-bottom: 2rem;
}

.hero-img {
    position: relative;
    height: 400px;
}

.card-blob {
    position: absolute;
    width: 300px;
    height: 350px;
    background: white;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--box-shadow);
    z-index: 2;
}

.stats-blob {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--teal);
    border-radius: 20px;
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.graphic-element {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 4px solid var(--pink);
    border-radius: 50%;
    bottom: 10%;
    right: 10%;
    z-index: 3;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--indigo), var(--purple));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.features-section {
    padding: 100px 0;
    background-color: white;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.czs {
    background: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
}

.bg-indigo { background: linear-gradient(135deg, var(--indigo), #6a0dad); }
.bg-teal { background: linear-gradient(135deg, var(--teal), #00a396); }
.bg-purple { background: linear-gradient(135deg, var(--purple), #7b3dff); }
.bg-orange { background: linear-gradient(135deg, var(--orange), #ff6b35); }
.bg-pink { background: linear-gradient(135deg, var(--pink), #ff4757); }
.bg-blue { background: linear-gradient(135deg, var(--blue), #3d7dca); }

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f9f9ff 0%, #ffffff 100%);
}

.step-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--indigo), var(--purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-card h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.process-visual {
    position: relative;
    height: 400px;
}

.visual-element {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle-animation {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 15px solid rgba(75, 0, 130, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bar-animation {
    position: absolute;
    width: 400px;
    height: 15px;
    background: linear-gradient(90deg, var(--indigo), var(--purple));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 10px;
}

.dots-animation {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--teal);
    border-radius: 50%;
    top: 40%;
    left: 40%;
    box-shadow: 0 0 0 15px rgba(0, 209, 178, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 209, 178, 0.4); }
    70% { box-shadow: 0 0 0 25px rgba(0, 209, 178, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 209, 178, 0); }
}

.testimonials-section {
    padding: 100px 0;
    background-color: white;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    min-width: 350px;
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--indigo);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    color: var(--indigo);
}

.rating {
    color: #ffc107;
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9f9ff 100%);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--indigo), var(--purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.form-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--indigo);
    box-shadow: 0 0 0 0.25rem rgba(75, 0, 130, 0.15);
}

.faq-section {
    padding: 100px 0;
    background-color: white;
}

.accordion-button {
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 10px !important;
    padding: 20px;
    background-color: white;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(75, 0, 130, 0.05);
    color: var(--indigo);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(75, 0, 130, 0.15);
}

.accordion-body {
    padding: 20px;
}

.mainImg {
    width: 100%;
    border-radius: 5px;
}

.twoImg {
    width: 100%;
    border-radius: 5px;
}

.footer {
    background: var(--dark);
    color: white;
    padding: 70px 0;
}

.footer-brand {
    font-size: 1.8rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--indigo), var(--purple));
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-top: 5px;
    margin-right: 10px;
    color: var(--teal);
}

.footer-divider {
    background: rgba(255, 255, 255, 0.1);
    margin: 50px 0 25px;
}

.cookies-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    color: white;
    padding: 15px 0;
    z-index: 2000;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.cookies-alert a {
    color: var(--teal);
    text-decoration: underline;
}

.privacy-section {
    padding: 120px 0 80px;
}

.privacy-header {
    margin-bottom: 50px;
}

.privacy-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--box-shadow);
}

.privacy-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--indigo);
}

.privacy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-content ul li {
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-img {
        height: 300px;
        margin-top: 50px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-section h1 {
        font-size: 2.3rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .features-section, .how-it-works-section, 
    .testimonials-section, .contact-section,
    .faq-section {
        padding: 70px 0;
    }
    
    .footer {
        padding: 50px 0 0;
    }
}

@media (max-width: 576px) {
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 30px 20px;
    }
}