/* Contact Location Section */
.contact-location {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.contact-location h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 60px;
}

.contact-location .highlight {
    color: #00d4aa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    align-items: stretch;
    max-width: 1000px;
    height: 300px;
    object-fit: contain; 
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    background: white;
}

.contact-info {
    background: rgb(177, 244, 226);
    padding: 30px 25px; /* Reduced padding for compactness */
    color: #2d3748;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 300px; 
}

/* Contact List Styling */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center; /* Centered alignment for icons and text */
    margin-bottom: 6px; /* Reduced margin for compactness */
    padding: 0;
}

.contact-list li:last-of-type {
    margin-bottom: 20px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon i {
    font-size: 1.2rem;
    color: #2d3748;
}

.contact-details {
    flex: 1;
}


.contact-details .value {
    font-size: 1rem; /* Adjusted font size for values */
    line-height: 1.4;
    font-weight: 400;
    color: #2d3748;
    margin: 0;
}

/* Contact Location Section */
.contact-location {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.contact-location h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 60px;
}

.contact-location .highlight {
    color: #00d4aa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    align-items: stretch;
    max-width: 1000px;
    height: 300px;
    object-fit: contain; 
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    background: white;
}

.contact-info {
    background: rgb(177, 244, 226);
    padding: 30px 25px; /* Reduced padding for compactness */
    color: #2d3748;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 300px; 
}

/* Contact List Styling */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center; /* Centered alignment for icons and text */
    margin-bottom: 6px; /* Reduced margin for compactness */
    padding: 0;
}

.contact-list li:last-of-type {
    margin-bottom: 20px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon i {
    font-size: 1.2rem;
    color: #2d3748;
}

.contact-details {
    flex: 1;
}


.contact-details .value {
    font-size: 1rem; /* Adjusted font size for values */
    line-height: 1.4;
    font-weight: 400;
    color: #2d3748;
    margin: 0;
}

.location-icons {
    display: flex;
    margin-top: 10px; /* Reduced margin for compactness */
    justify-content: flex-start;
    gap: 30px; 
    align-self: center;
}

.location-icon {
    width: 60px; /* Adjusted size to match the second image */
    height: 60px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-icon:hover {
    background: #4a5568;
    transform: translateY(-2px);
}

.location-icon i {
    font-size: 1.8rem;
    color: white;
}

.location-icon:last-child {
    background: #00d4aa;
}

.location-icon:last-child:hover {
    background: #00b894;
}

.map-container {
    background: white;
    position: relative;
    min-height: 300px; /* Adjusted height to match the second image */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 900px;
    }

    .contact-location {
        padding: 60px 0;
    }

    .contact-location h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .map-container {
        min-height: 300px;
    }

    .contact-info {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .contact-info {
        padding: 25px 20px; /* Adjusted padding */
        min-height: 280px; /* Adjusted height */
    }

    .contact-location h2 {
        font-size: 1.8rem;
    }

    .contact-list li {
        margin-bottom: 18px; /* Adjusted margin */
    }

    .contact-details .value {
        font-size: 0.95rem;
    }

    .location-icons {
        margin-top: 8px; /* Adjusted margin */
    }

    .location-icon {
        width: 38px; /* Adjusted size */
        height: 38px;
    }

    .location-icon i {
        font-size: 1.1rem; /* Adjusted font size */
    }

    .map-container {
        min-height: 280px; /* Adjusted height */
    }
}

@media (max-width: 480px) {
    .contact-location {
        padding: 40px 0;
    }

    .contact-info {
        padding: 20px 15px; /* Adjusted padding */
        min-height: 260px; /* Adjusted height */
    }

    .contact-location h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .contact-details .value {
        font-size: 0.9rem;
    }

    .map-container {
        min-height: 260px; /* Adjusted height */
    }
}