.banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hider {
    display: none;
  }

.banner-slides {
    display: flex;
    transition: opacity 0.5s ease-in-out;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-color: #f3f4f6; /* Light gray placeholder */
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

/* Button Styles */
.custom-button {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0;
    text-transform: none;
    gap: 8px;
}

.premium-button {
    background: linear-gradient(90deg, #eac96c 0%, #e89a3f 100%);
    color: white;
}

.premium-button:hover {
    opacity: 0.9;
}

.premium-button svg {
    width: 20px;
    height: 20px;
    color: white;
}

.ask-button {
    background: white;
    color: #005550;
    border: 2px solid #005550;
}

.ask-button:hover {
    background: rgba(0, 85, 80, 0.1);
}

.ask-button svg {
    width: 20px;
    height: 20px;
    color: white;
}

.ask-button:hover svg {
    color: white;
}

/* Container Styles */
.container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 1024px) {
    .container {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 70%;
    }
}

/* Header Gradient Line */
header {
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffec88, #b47a1a);
}

/* Menu Item Animations */
.menu-item {
    position: relative;
    transition: all 0.3s ease;
}

.menu-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: #eac96c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-item:hover {
    color: #eac96c;
    transform: translateY(-2px);
}

.menu-item:hover::after {
    width: 100%;
}

/* FAQ Animations */
.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
}

.faq-item button {
    padding: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 0.5rem;
}

.faq-item button:hover {
    background-color: rgba(0, 85, 80, 0.05);
}

.faq-item i {
    transition: transform 0.3s ease;
}

.faq-item.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(-10px);
    padding: 0 1rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    padding: 1rem;
    margin-top: 0.5rem;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .grid-cell {
        padding: 1rem;
    }
    
    .fixed.bottom-0 {
        padding: 0.5rem;
    }
    
    .fixed.bottom-0 a {
         
        font-size: 0.9rem;
    }
}
