/* Custom styles for new sections */
.stats-section .stats-box {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stats-section .stats-box:hover {
    transform: translateY(-5px);
}

.stats-section .stats-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.stats-section .stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.benefits-section .benefit-box {
    padding: 30px 20px;
    text-align: center;
    height: 100%;
}

.benefits-section .benefit-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.pricing-section .pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
}

.pricing-section .pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-section .pricing-card.featured {
    border: 3px solid #ff6b35;
    transform: scale(1.05);
}

.pricing-section .pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-section .price {
    margin: 20px 0;
}

.pricing-section .amount {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
}

.pricing-section .currency,
.pricing-section .period {
    font-size: 1.2rem;
    color: #666;
}

.pricing-section .pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-section .pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-section .pricing-features li:last-child {
    border-bottom: none;
}

.pricing-section .pricing-features i {
    color: #28a745;
    margin-right: 10px;
}

.testimonials-section .testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonials-section .testimonial-content {
    margin-bottom: 20px;
}

.testimonials-section .testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

.testimonials-section .testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials-section .author-info h5 {
    margin: 0;
    color: #333;
    font-weight: bold;
}

.testimonials-section .author-info span {
    color: #666;
    font-size: 14px;
}

.testimonials-section .rating i {
    color: #ffc107;
    margin-right: 2px;
}

.portals-section {
    background: #f8f9fa;
}

.portals-section .portal-logo {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portals-section .portal-logo:hover {
    transform: translateY(-5px);
}

.portals-section .portal-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .pricing-section .pricing-card.featured {
        transform: none;
        margin-top: 20px;
    }
    
    .stats-section .stats-number {
        font-size: 2rem;
    }
    
    .pricing-section .amount {
        font-size: 2rem;
    }
    
    .portals-section .portal-logo {
        height: 80px;
    }
    
    .portals-section .portal-logo img {
        max-height: 40px;
    }
}