* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.hero-section {
    text-align: center;
    margin-bottom: px;
    max-width: 500px;
    background: linear-gradient(135deg, #165DFC 0%, #0a4cc7 100%);
    padding: 40px 30px;
    border-radius: 20px;
    margin: 0 auto 30px auto;
}

.hero-heading {
    color: white;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.subheading {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: none;
}

.support-container {
    display: flex;
    gap: 120px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.support-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.support-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #f0f0f0;
}

.support-card h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.support-card p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #04ae0c;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 300;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.support-link i {
    font-size: 1rem;
}

.support-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.footer {
    margin-top: 60px;
    text-align: center;
    padding: 20px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-section {
        margin-bottom: 40px;
    }
    
    .support-container {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 0;
        justify-content: flex-start;
    }
    
    .support-card {
        min-width: 200px;
        max-width: 200px;
        flex-shrink: 0;
    }
    
    body {
        padding: 15px;
    }
    
    .support-card img {
        width: 80px;
        height: 80px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-section {
        margin-bottom: 30px;
    }
    
    .support-container {
        gap: 10px;
    }
    
    .support-card {
        padding: 15px;
        min-width: 160px;
        max-width: 160px;
    }
    
    .support-card h3 {
        font-size: 1rem;
    }
    
    .support-card p {
        font-size: 0.8rem;
    }
    
    .support-card img {
        width: 70px;
        height: 70px;
    }
}
