    /* Contacts Section */
    .contact-data {
        background: #fff;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.3s;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-data:hover {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .contact-data h5 {
        font-size: 1.6rem;
        font-weight: 600;
        color: #0078be;
        margin-bottom: 25px;
    }
    .contact-data p, .contact-data li {
        font-size: 1rem;
        color: #6b7280;
        line-height: 1.8;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .contact-data a {
        color: #0078be;
        text-decoration: none;
        transition: color 0.3s;
    }
    .contact-data a:hover {
        color: #005f95;
    }
    .contact-data i {
        color: #0078be;
        margin-right: 20px;
        width: 40px;
        text-align: center;
        font-size: 1.2rem;
    }
    .contact-data strong {
        min-width: 150px;
        color: #1f2937;
    }
    .bank-details ul {
        list-style: none;
        padding: 0;
    }
    .bank-details li {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #e9ecef;
        padding: 10px 0;
        gap: 15px;
    }
    .bank-details li:last-child {
        border-bottom: none;
    }
    .bank-details strong {
        color: #1f2937;
        flex: 1;
        min-width: 100px;
    }
    .bank-details span {
        flex: 2;
        text-align: right;
    }

    /* Map Section */
    .map-section {
        margin: 0 auto;
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    .map-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
        justify-content: center;
    }
    .map-buttons button {
        background: #0078be;
        color: #fff;
        border: none;
        padding: 8px 15px;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.3s;
    }
    .map-buttons button:hover {
        background: #005f95;
    }
    .map-hint {
        text-align: center;
        font-size: 0.9rem;
        color: #6b7280;
        margin-bottom: 15px;
    }
    #map {
        width: 100%;
        height: 500px;
        border-radius: 8px;
        border: 1px solid #e9ecef;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .contacts-section {
            padding: 40px 0;
        }
        .contact-data {
            padding: 30px;
            margin-bottom: 20px;
        }
        #map {
            height: 350px;
        }
        .map-section {
            padding: 15px;
        }
        .map-buttons {
            gap: 8px;
        }
        .map-buttons button {
            padding: 6px 12px;
            font-size: 0.9rem;
        }
        .map-hint {
            font-size: 0.85rem;
        }
    }
    @media (max-width: 768px) {
        .section-title {
            font-size: 1.5rem;
        }
        .contact-data h5 {
            font-size: 1.4rem;
        }
        .contact-data p, .contact-data li {
            font-size: 0.9rem;
            gap: 10px;
        }
        .contact-data i {
            margin-right: 15px;
            width: 30px;
            font-size: 1rem;
        }
        .contact-data strong {
            min-width: 120px;
        }
        .bank-details strong {
            min-width: 80px;
        }
        .map-section {
            padding: 10px;
        }
        .map-buttons {
            gap: 6px;
        }
        .map-buttons button {
            padding: 5px 10px;
            font-size: 0.85rem;
        }
        .map-hint {
            font-size: 0.8rem;
        }
    }