.faq-header {
    background-image: linear-gradient(to right, rgba(0, 51, 102, 0.7), rgba(0, 119, 182, 0.9)), url('../assets/faqs.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    top: 10px;
    padding: 70px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* This is the correct property */
    width: auto;
}

.faq-header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Add this line */
}

        
        .faq-title {
            font-weight: 600;
            font-size: 3rem;
            margin-bottom: 15px;
            letter-spacing: 1px;
            width: 100%;
            text-align: center;
        }
        
        .faq-subtitle {
            font-size: 16px;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            width: 100%;
        }
        
        .search-containerr {
            margin-top: 20px;
            max-width: 600px;
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        
        .search-inputs {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border-radius: 50px;
            border: none;
            font-size: 16px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-sizing: border-box;
        }
        
        .search-btns {
            position: absolute;
            right: 5px;
            top: 3px;
            background: none;
            border: none;
            font-size: 18px;
            color: #555;
            height: 40px;
            width: 40px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .faq-container {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .faq-item {
            background-color: white;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 100%; /* Ensure full width */
        }
        
.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #333;
    width: 1000px; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width calculation */
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s, transform 0.2s;
}

.faq-question:hover {
    background-color: #f9f9f9;
    transform: translateX(3px); /* subtle slide effect */
}

        
        .faq-answer {
            padding: 20px;
            background-color: #f9f9f9;
            border-top: 1px solid #eee;
            display: none;
            color: #555;
            line-height: 1.6;
            width: 1000px; /* Ensure full width */
            box-sizing: border-box; /* Include padding in width calculation */
        }
        
        .contact-section {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 20px 20px 20px;
            margin: 30px auto;
            max-width: 100%;
            width: 960px;
        }
        
        .contact-title {
            text-align: center;
            margin-bottom: 20px;
            color: #333;
        }
        
        .contact-form .form-group {
            margin-bottom: 20px;
        }
        
        .contact-form label {
            display: block;
            margin-bottom: 5px;
            color: #555;
            font-size: 14px;
        }
        
        .contact-form input, 
        .contact-form textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            box-sizing: border-box; /* Include padding in width calculation */
        }
        
        .contact-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        
.submit-btn {
    background-color: #0077B6;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0, 119, 182, 0.2); /* soft base shadow */
}

.submit-btn:hover {
    background-color: #2095d3;
    transform: scale(1.02); /* slight zoom */
    box-shadow: 0 6px 12px rgba(0, 119, 182, 0.3); /* subtle hover glow */
}

.submit-btn:active {
    transform: scale(0.98); /* press effect */
}
