.instant-loan-hero-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.instant-loan-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.svg');
    background-repeat: repeat;
    background-size: 200px;
    opacity: 0.05;
    z-index: 0;
}

.instant-loan-hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 20px 0;
}

.trust-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #FFD700;
    margin-right: 10px;
}

.trusted-text {
    font-weight: 600;
    color: #333;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

.hero-title .text-primary {
    color: #00c853 !important;
    font-weight: 800;
}

.hero-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 90%;
}

.hero-cta .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background-color: #00c853;
    border-color: #00c853;
}

.hero-cta .btn-primary:hover {
    background-color: #00a844;
    border-color: #00a844;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

.hero-cta .btn-outline-primary {
    color: #00c853;
    border-color: #00c853;
}

.hero-cta .btn-outline-primary:hover {
    background-color: #00c853;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.2);
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.hero-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .instant-loan-hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-cta .btn {
        padding: 10px 20px;
    }
}

/* Dark mode compatibility */
body.dark-mode .instant-loan-hero-section {
    background-color: #1a1a1a;
}

body.dark-mode .trust-badge {
    background-color: rgba(40, 40, 40, 0.9);
}

body.dark-mode .trusted-text {
    color: #e0e0e0;
}

body.dark-mode .hero-title {
    color: #f8f9fa;
}

body.dark-mode .hero-description {
    color: #adb5bd;
}