/* CONTACT SUPPORT SECTION */

.contact-support {
    background: #f8fafc;
    padding: 120px 20px;
    font-family: 'Inter', sans-serif;
}

.cs-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.cs-title {
    font-size: 42px;
    font-weight: 700;
    color: #0a1a2f;
    margin-bottom: 10px;
}

.cs-subtitle {
    font-size: 18px;
    color: #4c5c6b;
    margin-bottom: 50px;
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Cards */
.cs-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s ease;
}

.cs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
}

.cs-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.cs-card h2 {
    font-size: 22px;
    f
