/* General Styles */
body {
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
a { text-decoration: none; }

/* Header */
.site-header {
    background-color: #2c3e50;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.site-header img {
    width: 120px;
    height: auto;
}
.site-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0 0;
    padding: 0;
}
.site-nav li { margin: 0; }
.site-nav a {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}
.site-nav a:hover { color: #3498db; }
.nav-toggle { display: none; }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-title { font-size: 3em; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.2em; max-width: 900px; margin: 0 auto 30px; }
.hero-subtitle a { color: #e74c3c; font-weight: 600; }
.hero-subtitle a:hover { text-decoration: underline; }
.hero-cta a {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    margin: 0 10px;
}
.hero-cta .primary { background-color: #e74c3c; color: #fff; }
.hero-cta .secondary { background: transparent; color: #fff; border: 2px solid #fff; }
.hero-cta .primary:hover { background-color: #c0392b; transform: scale(1.05); }
.hero-cta .secondary:hover { background-color: #3498db; border-color: #3498db; transform: scale(1.05); }

/* Main Sections */
.section { padding: 60px 20px; text-align: center; }
.section-title { font-size: 2.5em; color: #2c3e50; margin-bottom: 40px; }
.section-bg { background-color: #f4f7fa; }
.section p { font-size: 1.1em; color: #666; max-width: 800px; margin: 0 auto; }
.section p strong { color: #2c3e50; }

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}
.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-5px); }
.card i { font-size: 2em; color: #3498db; margin-bottom: 15px; }
.card h3 { font-size: 1.5em; color: #2c3e50; margin-bottom: 10px; }
.card p { font-size: 1em; }

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-button:hover { background-color: #c0392b; transform: scale(1.05); }

/* Testimonial */
.testimonial-card { max-width: 600px; margin: 0 auto 30px; }
.testimonial-text { font-size: 1.2em; color: #333; margin-bottom: 15px; }
.testimonial-author { font-size: 1em; color: #3498db; font-weight: 600; }

/* Contact Form */
.contact-form { max-width: 800px; margin: 0 auto; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }
.contact-form h3 { font-size: 2em; color: #2c3e50; margin-bottom: 20px; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 5px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; }
.contact-form button { background-color: #3498db; border: none; padding: 12px 30px; color: #fff; border-radius: 5px; font-weight: 600; cursor: pointer; }
.contact-form button:hover { background-color: #2c3e50; }

/* FAQ Section */
.faq { max-width: 800px; margin: 0 auto 40px; }
.faq-item { background: #fff; border-radius: 8px; margin-bottom: 15px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
.faq-title { padding: 15px 20px; background: #ecf0f1; font-weight: 600; cursor: pointer; transition: background 0.3s ease; }
.faq-title:hover { background: #dfe6e9; }
.faq-content { padding: 20px; display: none; }
.faq-item.active .faq-content { display: block; }

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.site-footer .site-nav ul { margin: 0; }
.site-footer .copyright { margin-top: 20px; font-size: 0.9em; }

/* Responsive Design */
@media (max-width: 768px) {
    .site-nav ul { flex-direction: column; gap: 15px; display: none; }
    .site-nav.show ul { display: flex; }
    .nav-toggle { display: block; color: #fff; background: #2c3e50; border: 2px solid #fff; font-size: 28px; padding: 5px 10px; cursor: pointer; }
    .nav-toggle:hover { color: #3498db; border-color: #3498db; }
    .hero-title { font-size: 2em; }
    .hero-subtitle { font-size: 1.1em; }
    .hero-cta a { display: block; margin: 10px auto; }
    .section-title { font-size: 2em; }
} 