/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1F2937;
    background-color: #FFFFFF;
    line-height: 1.6;
}

/* Typography */
h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    color: #2563EB;
    margin-bottom: 15px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: #4B5563;
    margin-bottom: 15px;
}

.hero-subtext {
    font-size: 18px;
    color: #4B5563;
    max-width: 600px;
    margin-bottom: 30px;
}

/* Spacing Utilities */
.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mb-60 {
    margin-bottom: 60px;
}

.bg-light {
    background-color: #F8FAFC;
}

/* Hero Section */
.support-hero {
    padding: 100px 0;
    background-color: #F8FAFC;
    position: relative;
}

.hero-img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2563EB;
    line-height: 1;
}

.stat-text {
    font-size: 16px;
    color: #4B5563;
    margin-top: 5px;
}

/* Services Section */
.section-header {
    margin-bottom: 60px;
}

.section-header p {
    font-size: 18px;
    color: #4B5563;
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

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

.service-card.featured {
    border-top: 4px solid #F59E0B;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #F59E0B;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-icon {
    font-size: 40px;
    color: #2563EB;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-features i {
    color: #F59E0B;
    margin-top: 3px;
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
}

.service-link:hover {
    color: #1E40AF;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Process Section */
.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2563EB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    padding-top: 8px;
}

/* Benefits Section */
.benefits-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefits-img img {
    width: 100%;
    height: auto;
    display: block;
}

.img-stat {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 150px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* CTA Section */
.support-cta {
    background-color: #2563EB;
    color: white;
    text-align: center;
}

.support-cta h2 {
    color: white;
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #F59E0B;
    border-color: #F59E0B;
    color: white;
}

.btn-primary:hover {
    background-color: #D97706;
    border-color: #D97706;
}

.btn-outline-light {
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #2563EB;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .benefits-content {
        margin-top: 60px;
    }
    
    .img-stat {
        right: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 30px;
    }
    
    .support-hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-img {
        margin-top: 40px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .py-80 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}