img {
    width: 100%; 
    height: auto; 
    border: 3px solid #e6cb65;
    border-radius: 3px; 
    margin-bottom: 5px; 
    display: block; 
}

.accordion-body h1,
.accordion-body h2,
.accordion-body h3,
.accordion-body h4,
.accordion-body h5,
.accordion-body h6 {
    color: #e6cb65;
}

.logo-img {
    border: none;
    max-height: 40px; /* Adjust the height as needed */
    width: auto; /* Maintains aspect ratio */
}

@media (max-width: 768px) {
    .logo-img {
        border: none;
        max-height: 30px; /* Slightly smaller for smaller screens */
    }
}

@media (max-width: 576px) {
    .logo-img {
        border: none;
        max-height: 30px; /* Even smaller for extra small screens */
    }
}

/* Location Page Styles */
.location-hero {
    background-color: var(--primary-dark);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.location-hero-content {
    text-align: center;
    color: var(--bg-light);
}

.location-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bg-light);
    font-weight: 600;
}

.location-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.location-breadcrumb .breadcrumb {
    justify-content: center;
    margin: 0;
}

.location-breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
}

.location-breadcrumb .active {
    color: var(--secondary-light);
}

/* Content Styling */
.location-content {
    padding: 2rem 0;
}

.content-wrapper {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Profiles Section */
.profiles-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Profile Filters */
.profile-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--secondary-color);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--accent-color);
    color: var(--bg-light);
    border-color: var(--accent-color);
}

.filter-search {
    position: relative;
    min-width: 250px;
}

.filter-search input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid var(--secondary-color);
    border-radius: 2rem;
    background: var(--bg-card);
}

.filter-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

/* Empty State */
.profiles-empty-state {
    text-align: center;
    padding: 3rem 0;
    color: var(--primary-color);
}

.profiles-empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Location Info Section */
.location-info {
    padding: 3rem 0;
    background: var(--bg-card);
}

.info-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.info-card p {
    color: var(--primary-color);
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .location-hero-content h1 {
        font-size: 2rem;
    }

    .profile-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-search {
        min-width: 100%;
    }

    .content-wrapper {
        padding: 1.5rem;
    }
}