/* Customer Support Section Styles */

.customer-support-section {
    margin-bottom: 100px;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid #eee;
}

.support-card {
    background: #fff;
    padding: 30px;
    text-align: left;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.support-card:last-child {
    border-bottom: none;
}

.support-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 500;
}

.support-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.support-item i {
    font-size: 16px;
    color: var(--primary-color);
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.support-item span,
.support-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
}

.support-item a {
    font-size: 14px;
    color: inherit;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
}

.support-item a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (min-width: 768px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-card:nth-child(odd) {
        border-right: 1px solid #eee;
    }

    .support-card:nth-child(n+3) {
        border-bottom: none;
    }
}

@media (min-width: 992px) {
    .support-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .support-card {
        border-right: 1px solid #eee;
        border-bottom: none;
    }

    .support-card:last-child {
        border-right: none;
    }
}

@media (max-width: 767px) {
    .customer-support-section {
        margin-bottom: 60px;
    }

    .support-card {
        padding: 25px 20px;
    }
}
