body {
    font-family: 'Arial', sans-serif;
}

header h1 {
    font-size: 3rem;
    color: #800000;
}
header h2 {
    font-size: 2rem;
    color: #8B4513 ;
}

.bg-beige {
    background-color: #F5F5DC;
}

.loading-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-item img {
    max-height: 400px;
    object-fit: cover;
}
.navbar {
    background: linear-gradient(to right, #2c3e50, #4a6075); /* Elegant gradient */
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.profile-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #007bff;
    text-decoration: none;
}

.profile-nav.prev {
    left: 10px;
}

.profile-nav.next {
    right: 10px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    .carousel-item img {
        max-height: 200px;
    }
}