.angie-contact-strip-aba9d4d3 {
    background-color: var(--cs-bg-color, #081B33);
    width: 100%;
    overflow: hidden;
}

.cs-grid-aba9d4d3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.cs-item-aba9d4d3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

.cs-item-aba9d4d3:hover {
    transform: translateY(-5px);
}

.cs-icon-aba9d4d3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-title-aba9d4d3 {
    margin: 0 0 10px 0;
    font-weight: 600;
}

.cs-value-aba9d4d3 {
    margin: 0;
    line-height: 1.5;
}

/* Tablet */
@media (max-width: 1024px) {
    .cs-grid-aba9d4d3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .cs-grid-aba9d4d3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
