    .contact-info-sidebar {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        height: fit-content;
    }

    .sidebar-title {
        color: #2c3e50;
        font-size: 2rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid #007bff;
    }

    .contact-info-list {
        margin-bottom: 30px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f1f1f1;
    }

    .contact-item:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .contact-item i {
        color: #007bff;
        font-size: 1.2rem;
        margin-top: 2px;
        min-width: 20px;
    }

    .contact-item strong {
        display: block;
        color: #2c3e50;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .contact-item a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-item a:hover {
        color: #0056b3;
    }

    .contact-item span {
        color: #495057;
    }

    .business-hours {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
    }

    .business-hours h5 {
        color: #2c3e50;
        margin-bottom: 15px;
        font-size: 1.5rem;
    }

    .hours-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #e9ecef;
    }

    .hours-item:last-child {
        border-bottom: none;
    }

    .hours-item span:first-child {
        color: #495057;
    }

    .hours-item span:last-child {
        color: #007bff;
        font-weight: 500;
    }

    .map-wrapper .title {
        color: #2c3e50;
        font-size: 2rem;
        font-weight: 600;
    }

    .map-container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }


    @media (max-width: 768px) {
        .contact-info-sidebar {
            padding: 20px;
            margin-top: 30px;
        }

        .contact-item {
            flex-direction: column;
            gap: 10px;
        }

        .hours-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
        }

        .map-wrapper .title {
            font-size: 1.5rem;
        }

    }