    .mr-2 {
        margin-right: 5px;
    }

    /* Müşteri Merkezleri Buton Stili */
    .collapse-content {
        display: inline-block;
        padding: 12px 20px;
        background-color: #fff;
        border: 2px solid #ddd;
        border-radius: 8px;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        width: 100%;
        font-weight: 500;
    }

    .collapse-content:hover {
        background-color: #FEC70B;
        border-color: #FEC70B;
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .collapse-content i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .collapse-content:hover i {
        transform: translateX(5px);
    }

    /* Harita üstündeki adres alanı için padding/margin düzenlemesi */
    #locationContact {
        padding: 10px 15px !important;
        margin-bottom: 15px !important;
    }

    #locationContact p {
        margin-bottom: 8px !important;
        padding: 0 !important;
    }

    #locationContact .contact-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px !important;
    }

    #locationContact .contact-address {
        margin-bottom: 8px !important;
    }

    /* Genel Modal Stilleri - Detail sayfası ile uyumlu */
    .modal-content {
        border: none;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    }

    .modal-header {
        background: linear-gradient(135deg, #FEC70B 0%, #f0b500 100%);
        border-bottom: none;
        padding: 20px 25px;
    }

    .modal-header .modal-title {
        font-size: 20px;
        font-weight: 700;
        color: #212529;
    }

    .modal-header .btn-close {
        filter: brightness(0) saturate(100%);
        opacity: 0.8;
    }

    .modal-header .btn-close:hover {
        opacity: 1;
    }

    .modal-body {
        padding: 25px;
        background-color: #fff;
    }

    /* Bilgi/Uyarı Modalları için özel ikonlar */
    .modal-info-icon {
        text-align: center;
        margin-bottom: 20px;
    }

    .modal-info-icon i {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .modal-info-icon.success i {
        color: #28a745;
    }

    .modal-info-icon.error i {
        color: #dc3545;
    }

    .modal-info-icon.warning i {
        color: #ffc107;
    }

    .modal-info-icon.info i {
        color: #17a2b8;
    }

    .modal-body .card {
        border: none;
        box-shadow: none;
    }

    .modal-body h5 {
        color: #212529;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .modal-body p {
        color: #6c757d;
        line-height: 1.6;
    }

    /* Mobile Responsive Adjustments */
    @media (max-width: 768px) {
        .collapse-content {
            padding: 8px 10px;
            /* Smaller padding */
            font-size: 13px;
            /* Smaller font */
            min-height: 50px;
            /* Ensure even height */
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1.2;
        }

        .collapse-content i {
            margin-left: 5px;
            font-size: 12px;
        }

        /* Adjust column gutters if needed */
        .row.mt-5.mb-5 .col-6 {
            padding-left: 5px;
            padding-right: 5px;
        }
    }