.hero-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8) 0%, rgba(78, 70, 229, 0.63) 100%), url('../images/illustrations/feeding.jpg') no-repeat center center;
    background-size: cover;
    background-position: center 25%;
    padding: 120px 0;
    color: #fff;
    position: relative;
    height: 70vh;
    margin-top: -16px;
}

.hero-content {
    max-width: 650px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-brand);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 12px;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-buttons .btn-light {
    background-color: #fff;
    color: #4F46E5;
}

.hero-buttons .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.features-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: var(--font-brand);
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
}

.section-title p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.feature-icon i {
    font-size: 28px;
    color: #fff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 20px 0 20px 30px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    position: relative;
}

.about-content h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
}

.about-content p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-list {
    padding-left: 0;
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: #495057;
}

.about-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #6366F1;
}

.testimonials-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 20px 15px;
    position: relative;
    transition: all 0.3s ease;
}

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

.testimonial-content {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.testimonial-content p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-content:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 2rem;
    color: rgba(99, 102, 241, 0.2);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid #6366F1;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.testimonial-rating {
    margin-top: 5px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 0.9rem;
    margin-right: 2px;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    margin: 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.cta-buttons .btn-light {
    background-color: #fff;
    color: #4F46E5;
}

.cta-buttons .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stats-section {
    padding: 100px 0;
    background-color: #fff;
}

.stats-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: #fff;
    height: 100%;
}

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

.stats-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    border-radius: 50%;
}

.stats-icon i {
    font-size: 36px;
    color: #6366F1;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-title {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        padding: 30px 0 0 0;
    }

    .section-title h2,
    .about-content h2,
    .cta-title {
        font-size: 2rem;
    }
}

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

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

    .feature-card,
    .testimonial-card,
    .stats-card {
        margin-bottom: 30px;
    }

    .hero-buttons .btn,
    .cta-buttons .btn {
        margin-bottom: 15px;
        display: block;
        width: 100%;
    }

    .section-title h2,
    .about-content h2,
    .cta-title {
        font-size: 1.8rem;
    }

    .features-section,
    .about-section,
    .testimonials-section,
    .cta-section,
    .stats-section {
        padding: 60px 0;
    }
}
