/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Navigation */
nav {
    text-align: center;
    padding: 10px;
    background: #555;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}

/* Content Container */
.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px gray;
}

/* Headings */
h2 {
    color: #333;
}

/* Call-to-Action Button */
.cta {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
}

.cta:hover {
    background: #218838;
}

/* Fee Structure & Course List */
.fee-structure, .course-category, .contact-info {
    background: #28a745;
    color: white;
    padding: 10px;
    font-size: 20px;
    margin-top: 20px;
}

.fees, .course-list, .info-box {
    padding: 15px;
    background: #fff;
    border-left: 5px solid #28a745;
    margin-top: 10px;
}

/* Forms */
.form-group {
    margin-bottom: 15px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
}

.submit-btn {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.submit-btn:hover {
    background: #218838;
}

/* Testimonials Section */
.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.testimonial {
    flex: 1;
    min-width: 250px;
    background: #f8f8f8;
    padding: 15px;
    border-left: 5px solid #28a745;
    box-shadow: 0px 0px 5px gray;
    border-radius: 5px;
}

.testimonial p {
    font-style: italic;
}

.testimonial h4 {
    text-align: right;
    margin-top: 10px;
    color: #333;
}

/* FAQ Section */
.faq-container {
    margin-top: 20px;
}

.faq {
    background: #fff;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #28a745;
    color: white;
    padding: 15px;
    font-size: 18px;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 20px;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 15px;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
}


/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}
