/* GENERAL & UTILITIES */
.container-1200 { max-width: 1200px; margin: 0 auto; }
.container-1100 { max-width: 1100px; margin: 0 auto; }
.container-800 { max-width: 800px; margin: 0 auto; }
.text-center { text-align: center; }

/* Buttons */
.btn-primary { background-color: #005A9C; color: #ffffff; padding: 10px 20px; border-radius: 4px; text-decoration: none; font-weight: bold; display: inline-block; }
.btn-hero { background-color: #005A9C; color: #ffffff; padding: 15px 30px; border-radius: 4px; text-decoration: none; font-size: 1.2rem; font-weight: bold; display: inline-block; }
.btn-outline { border: 2px solid #005A9C; color: #005A9C; padding: 10px 25px; border-radius: 4px; text-decoration: none; font-weight: bold; display: inline-block; }
.btn-back { background-color: #005A9C; color: #ffffff; padding: 10px 20px; border-radius: 4px; text-decoration: none; font-weight: bold; font-size: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; }

/* HEADER & FOOTER */
.main-header { background-color: #ffffff; border-bottom: 2px solid #005A9C; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo-link { font-size: 1.5rem; font-weight: bold; color: #005A9C; text-decoration: none; }
.nav-list { list-style: none; display: flex; gap: 2rem; margin: 0; align-items: center; }
.nav-link { color: #333333; text-decoration: none; font-weight: 500; }

.main-footer { background-color: #005A9C; color: #ffffff; padding: 4rem 2rem 2rem; margin-top: auto; }
.footer-container { display: flex; gap: 3rem; flex-wrap: wrap; justify-content: space-between; }
.footer-col { flex: 1; min-width: 280px; }
.footer-col-small { flex: 1; min-width: 200px; }
.footer-brand { color: #ffffff; font-size: 1.8rem; margin-bottom: 1rem; }
.footer-heading { color: #ffffff; font-size: 1.3rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 0.5rem; }
.footer-text { margin-bottom: 0.5rem; font-size: 1.1rem; }
.footer-list { list-style: none; padding: 0; margin: 0; font-size: 1.1rem; line-height: 2; }
.footer-list-item { display: flex; justify-content: space-between; }
.footer-link { color: #ffffff; text-decoration: underline; }
.footer-link-nounderline { color: #ffffff; text-decoration: none; }
.copyright-bar { margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.2); font-size: 0.9rem; color: rgba(255,255,255,0.8); }

/* HOMEPAGE SECTIONS */
.hero-section { padding: 5rem 2rem; background-color: #F4F7F6; color: #333333; }
.hero-title { font-size: 3rem; color: #005A9C; margin-bottom: 1rem; }
.hero-text { font-size: 1.25rem; max-width: 600px; margin: 0 auto 2rem; }

.about-section { padding: 5rem 2rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.section-heading { color: #005A9C; margin-bottom: 1.5rem; font-size: 2rem; font-weight: bold; }
.section-text { font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; color: #333333; }
.about-image { width: 100%; max-width: 500px; height: auto; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.services-section, .pricing-section { padding: 4rem 2rem; background-color: #F4F7F6; }
.services-heading { color: #005A9C; margin-bottom: 3rem; }
.card-grid { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.card { background: #ffffff; padding: 2rem; border-radius: 8px; width: 300px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.card-title { color: #333333; margin-bottom: 1rem; }
.card-text { margin-bottom: 1.5rem; line-height: 1.5; }
.card-text-condensed { margin-bottom: 0.8rem; line-height: 1.5; }
.card-link { color: #005A9C; text-decoration: underline; font-weight: bold; }

/* FAQ PAGE */
.back-btn-wrapper { padding: 2rem 2rem 0; }
.faq-section { padding: 5rem 2rem; background-color: #ffffff; }
.faq-main-heading { color: #005A9C; margin-bottom: 4rem; font-size: 2rem; font-weight: bold; }
.faq-category-heading { color: #333333; font-size: 1.6rem; font-weight: bold; margin-bottom: 1.5rem; border-bottom: 2px solid #F4F7F6; padding-bottom: 0.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 4rem; }
.faq-item { background: #ffffff; border-radius: 8px; padding: 1.5rem 2rem; border-left: 4px solid #005A9C; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.faq-summary { font-size: 1.4rem; font-weight: bold; color: #005A9C; outline: none; }
.faq-text { margin-top: 1rem; color: #333333; font-size: 1.1rem; line-height: 1.6; margin-bottom: 0; }
