* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Roboto', 'Open Sans', Arial, sans-serif; }
body { background-color: #ffffff; color: #202124; line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
header { background-color: #0d652d; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; color: #ffffff; }
.logo { font-size: 1.5rem; font-weight: bold; text-decoration: none; color: #ffffff; }
nav ul { list-style: none; display: flex; gap: 1.5rem; align-items: center; }
nav a { color: #ffffff; text-decoration: none; font-weight: 500; }
.btn { background-color: #ffffff; color: #0d652d; padding: 0.5rem 1.5rem; border-radius: 24px; text-decoration: none; font-weight: bold; border: 2px solid #ffffff; transition: all 0.3s ease; display: inline-block; cursor: pointer; text-align: center; }
.btn:hover { background-color: transparent; color: #ffffff; }
.btn-primary { background-color: #0d652d; color: #ffffff; border-color: #0d652d; }
.btn-primary:hover { background-color: #ffffff; color: #0d652d; border-color: #0d652d; }
main { flex: 1; }
section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-light { background-color: #f8f9fa; width: 100%; }
.section-light .content-wrapper { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
h1, h2, h3 { margin-bottom: 1rem; color: #0d652d; }
p { margin-bottom: 1rem; color: #5f6368; }
.disclaimer-banner { background-color: #f1f3f4; color: #5f6368; text-align: center; padding: 0.5rem; font-size: 0.85rem; border-bottom: 1px solid #e8eaed; }
footer { background-color: #f8f9fa; border-top: 1px solid #e8eaed; padding: 3rem 2rem 1rem; text-align: center; color: #5f6368; font-size: 0.9rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; text-align: left; margin-bottom: 2rem; }
.footer-col h4 { color: #202124; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { color: #0d652d; text-decoration: none; }
.footer-bottom { border-top: 1px solid #e8eaed; padding-top: 1rem; margin-top: 2rem; }
.support-box { background-color: #e6f4ea; border: 1px solid #ceead6; padding: 1.5rem; border-radius: 8px; margin: 2rem 0; }
.support-box ul { list-style: none; margin-top: 1rem; }
.support-box li { margin-bottom: 0.5rem; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.card { background: #ffffff; border: 1px solid #e8eaed; border-radius: 8px; padding: 2rem; text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.badge { display: inline-block; padding: 0.25rem 0.5rem; background-color: #e6f4ea; color: #0d652d; border-radius: 4px; font-size: 0.8rem; font-weight: bold; margin-bottom: 1rem; margin-right: 0.5rem; }
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: #202124; }
.form-group input[type="text"], .form-group input[type="email"], .form-group select, .form-group textarea { width: 100%; padding: 0.75rem; border: 1px solid #dadce0; border-radius: 4px; font-family: inherit; }
.checkbox-group { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 1rem; text-align: left; }
.checkbox-group input { margin-top: 0.25rem; }
.checkbox-group label { font-size: 0.9rem; color: #5f6368; }
.hidden { display: none !important; }
.iframe-container { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; border-radius: 8px; overflow: hidden; margin: 2rem 0; }
.iframe-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; border: 2px dashed #5f6368; box-sizing: border-box; text-align: center; padding: 2rem; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer; font-weight: bold; }
ul.checklist { list-style: none; padding: 0; }
ul.checklist li { margin-bottom: 0.5rem; padding-left: 1.5rem; position: relative; }
ul.checklist li::before { content: '✓'; position: absolute; left: 0; color: #0d652d; font-weight: bold; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
@media (max-width: 768px) {
    nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #0d652d; padding: 1rem; z-index: 100; }
    nav ul.active { display: flex; }
    .menu-toggle { display: block; }
    header { position: relative; }
}