:root {
    --primary-color: #2e8b57;
    --secondary-color: #f8f9fa;
    --accent-color: #ffc107;
    --dark-green: #1d6e42;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1625246333193-4e78d5f8231c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 100px;
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-green {
    background-color: rgba(46, 139, 87, 0.1);
}

.product-card {
    transition: transform 0.3s;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.lead-form {
    background-color: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.social-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.social-icon:hover {
    color: var(--dark-green);
    transform: translateY(-3px);
}

.calendar-embed {
    min-height: 600px;
    border: none;
    width: 100%;
    border-radius: 15px;
}

.navbar-brand img {
    height: 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.nav-link:hover {
    border-bottom: 2px solid white;
}

.process-step {
    text-align: center;
    padding: 25px 15px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.testimonial-text {
    position: relative;
    padding: 20px;
    font-style: italic;
}

.testimonial-text:before {
    content: """;
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Arial, sans-serif;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.industry-stat {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
    color: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    height: 100%;
}

.transformation-product {
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 80px;
    }
    
    .display-4 {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}