.cim-contact-container {
    display: flex;
    flex-direction: column;
}

.cim-ca-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    gap: 20px;
}

.cim-ca-map-section {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
    position: relative;
}

.cim-ca-map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 300px;
}

.cim-ca-info-section {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.cim-ca-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: -0.5px;
}

.cim-ca-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 5px;
}

.cim-ca-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cim-ca-info-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* SVG Icons */
.cim-ca-location-icon ,
.cim-ca-phone-icon,
.cim-ca-email-icon {
    fill: currentColor;
}

/* heading color  */
.cim-ca-heading {
    color: #009966;
}

.cim-ca-heading::after {
    background-color: #009966;
}

.cim-ca-chevron-button:hover {
    background-color: #007a52;
}

.cim-ca-chevron-button {
    background-color: #009966;
}

@media (max-width: 768px) {
    .cim-ca-container {
        flex-direction: column;
    }

    .cim-ca-map-section {
        min-height: 250px;
    }

    .cim-ca-info-section {
        padding: 30px 25px;
    }

    .cim-ca-title {
        font-size: 24px;
    }
}