#services_section {
    background: var(--primary-color);
    text-align: center;
}

#services_section h2 {
    margin-bottom: 60px;
    font-size: clamp(48px, 8vw, 80px);
}

.flex_container {
    gap: 30px;
}

.card {
    width: 260px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.327);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--main-brand-color);
}

.card-icon {
    width: 52px;
    height: 52px;
    color: var(--main-brand-color);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card h3 {
    font-size: 23px;
    color: var(--secondary-color);
}

.card p {
    font-size: 18px;
    opacity: 0.6;
    line-height: 1.7;
}

.card:hover p {
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .card {
        width: 100%;
    }
}