.faq-hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    object-position: center top;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: block;
}

.site-header .col-lg-6:first-child {
    overflow: visible;
    display: flex;
    align-items: flex-start;
}

.accordion-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px !important;
    margin-bottom: 20px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: #ffffff;
    border: none;
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(232,232,232,0.1);
    color: #e8e8e8;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e8e8e8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: rgba(0,0,0,0.3);
    padding: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.pricing-title {
    color: #e8e8e8;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-amount {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-description {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-list li {
    color: #ffffff;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-hours {
    color: #e8e8e8;
    font-weight: 600;
}

.pricing-price {
    color: #ffffff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .faq-hero-img {
        max-height: 60vh;
        height: auto;
        border-radius: 20px;
        margin-bottom: 30px;
    }
    
    .site-header .col-lg-6:first-child {
        align-items: flex-start;
    }
    
    .accordion-button {
        font-size: 16px;
        padding: 20px 25px;
    }
    
    .accordion-body {
        padding: 25px;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .pricing-amount {
        font-size: 28px;
    }
}