@import url(buttons.css);
@import url(media_styles.css);

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #f7f7f7;
    background: linear-gradient(90deg, rgba(247, 247, 247, 0.21) 0%, rgba(61, 217, 37, 0.13) 80%, rgba(247, 247, 247, 1) 100%);
}


.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green) !important;
}


.hero-section {
    /* min-height: 70dvh; */

    margin-top: 100px;

}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.hero-image:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.hero-title,
.converter-title {
    font-size: 4rem;
    font-weight: 800;
    text-wrap: balance;
    line-height: 0.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: var(--title-font)
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.about-section {
    padding: 50px 0;
}

.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.testimonial-section {
    padding: 100px 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--text-light);
    font-size: 0.9rem;
}

.faq-section {
    padding: 100px 0;
}



.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}
