/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background: linear-gradient(135deg, #004080, #0066cc);
    color: #fff;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.site-title {
    font-size: 3rem;
    margin: 0;
    transition: color 0.3s ease;
}

.site-title:hover {
    color: #ffcc00;
}

.tagline {
    font-size: 1.5rem;
    margin: 10px 0 0;
}

/* Navigation */
.navigation {
    background-color: #0066cc;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background-color: #004080;
    color: #ffcc00;
    border-radius: 5px;
}

/* About Section */
.about-section {
    padding: 50px 0;
    background: #fff url('background-pattern.png') no-repeat center center;
    background-size: cover;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #004080;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    margin: 0 auto;
    max-width: 800px;
    text-align: left;
}

/* Features Section */
.features-section {
    padding: 50px 0;
    background-color: #f1f1f1;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 1.5rem;
    color: #004080;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 1rem;
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.testimonial-item {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 1rem;
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background-color: #f1f1f1;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-size: 1.5rem;
    color: #004080;
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ffcc00;
}

.faq-answer {
    font-size: 1rem;
    color: #666;
    display: none;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #004080, #0066cc);
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-text {
    margin: 0;
    font-size: 1.2rem;
}
