* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
:root { --orange: #f57c00; --dark-orange: #e65100; --dark: #1a1a2e; --light: #f8f9fa; --green: #27ae60; --red: #e74c3c; }
.hero { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); color: #fff; padding: 100px 20px; text-align: center; }
.hero-content { max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 2.8rem; margin-bottom: 10px; }
.hero-acronym { color: var(--orange); }
.hero-tagline { font-size: 1.5rem; color: var(--orange); font-weight: 700; margin-bottom: 15px; }
.hero-subtitle { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.accreditation-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.badge { background: rgba(245, 124, 0, 0.2); border: 1px solid var(--orange); color: var(--orange); padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
.btn { display: inline-block; padding: 12px 30px; border-radius: 8px; font-weight: 700; font-size: 1rem; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--dark-orange); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-large { width: 100%; padding: 15px; font-size: 1.1rem; }
.section-title { font-size: 2rem; text-align: center; margin-bottom: 10px; color: var(--dark); }
.section-subtitle { text-align: center; color: #666; margin-bottom: 40px; font-size: 1.1rem; }
.deal-section { padding: 60px 20px; background: var(--light); }
.deal-card { max-width: 500px; margin: 0 auto; background: #fff; border-radius: 16px; padding: 40px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border-top: 5px solid var(--orange); }
.deal-price { font-size: 3.5rem; font-weight: 800; color: var(--orange); margin-bottom: 20px; }
.deal-features { text-align: left; margin-bottom: 30px; }
.deal-features li { padding: 8px 0; font-size: 1.05rem; }
.services-section { padding: 60px 20px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }
.service-card { background: #fff; border-radius: 12px; padding: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; border-left: 4px solid var(--orange); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.service-icon { font-size: 2.5rem; margin-bottom: 15px; }
.service-card h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: #666; font-size: 0.95rem; }
.risk-section { padding: 60px 20px; background: var(--light); }
.chart-container { max-width: 700px; margin: 0 auto; position: relative; }
.chart { display: flex; height: 300px; }
.chart-y-axis { display: flex; flex-direction: column; justify-content: space-between; padding-right: 10px; font-size: 0.8rem; color: #999; text-align: right; }
.chart-area { flex: 1; position: relative; }
.risk-chart { width: 100%; height: 100%; }
.chart-x-axis { display: flex; justify-content: space-between; padding-left: 35px; font-size: 0.8rem; color: #999; margin-top: 5px; }
.chart-legend { display: flex; gap: 30px; justify-content: center; margin-top: 20px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.legend-color { width: 20px; height: 4px; border-radius: 2px; }
.legend-color.red { background: var(--red); }
.legend-color.green { background: var(--green); }
.risk-callout { position: absolute; top: 50%; right: 10%; background: var(--green); color: #fff; border-radius: 50%; width: 100px; height: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.risk-reduction { font-size: 1.8rem; font-weight: 800; }
.risk-label { font-size: 0.75rem; }
.accreditation-bar { background: var(--dark); padding: 30px 20px; }
.accreditation-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.accreditation-item { color: var(--orange); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.contact-section { padding: 60px 20px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.contact-info h3, .contact-form h3 { margin-bottom: 20px; color: var(--dark); }
.contact-item { padding: 8px 0; font-size: 1.05rem; }
.contact-item a { color: var(--orange); font-weight: 600; }
.contact-form form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea { padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; font-family: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--orange); }
footer { background: var(--dark); color: #ccc; padding: 50px 20px 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-col h4 { color: var(--orange); margin-bottom: 15px; }
.footer-col p, .footer-col li { font-size: 0.9rem; padding: 4px 0; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #333; font-size: 0.85rem; }
@media (max-width: 768px) { .hero h1 { font-size: 2rem; } .hero-tagline { font-size: 1.2rem; } .contact-grid { grid-template-columns: 1fr; } .risk-callout { width: 80px; height: 80px; } .risk-reduction { font-size: 1.4rem; } .accreditation-items { gap: 20px; } }