/* Shared across every page: reset, header/nav/logo, footer, and the fadeInUp
   animation. Anything specific to one page's own content lives in that
   page's own style.css, loaded after this file. */

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}

:root{
--primary-orange:#ea580c;
--accent-black:#0f172a;
--dark-blue:#1e3a8a;
--white:#ffffff;
}

.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* Header */
.header{background:var(--white);box-shadow:0 2px 10px rgba(0,0,0,0.1);width:100%;top:0;z-index:1000;transition:all 0.3s ease}
.nav{display:flex;justify-content:space-between;align-items:center;padding:1rem 0}
.logo{display:flex;align-items:center;gap:15px;font-size:1.5rem;font-weight:700;color:var(--primary-orange);text-decoration:none}
.logo img{height:80px;width:auto}
.logo span{max-width:165px;line-height:1.15}
.nav-links{display:flex;list-style:none;gap:2rem}
.nav-links a{text-decoration:none;color:#0f172a;font-weight:500;transition:color 0.3s ease}
.nav-links a:hover{color:var(--primary-orange)}
.cta-button{background:#c2410c;color:var(--white);padding:0.75rem 1.5rem;border-radius:5px;text-decoration:none;font-weight:600;transition:all 0.3s ease;display:inline-block;border:none;cursor:pointer}
.cta-button:hover{background:var(--primary-orange);transform:translateY(-2px)}
@media (max-width:768px){.nav-links{display:none}.logo img{height:60px}.logo{font-size:1.2rem}}

/* Footer */
.footer-boxes{background-color:#000000;padding:60px 20px 40px}
.footer-container{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:40px;align-items:start}
.footer-box{background-color:rgba(255,255,255,0.05);padding:30px;border-radius:8px;border:1px solid rgba(255,255,255,0.1)}
.footer-box h3{color:#4db8c4;font-size:1.25rem;margin-bottom:20px;font-weight:600}
.footer-box ul{list-style:none;padding:0}
.footer-box ul li{color:#ffffff;padding:8px 0;font-size:1rem;line-height:1.6;position:relative;padding-left:20px}
.footer-box ul li:before{content:"✓";position:absolute;left:0;color:#4db8c4;font-weight:bold}
.logo-box{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center}
.logo-box img{max-width:200px;height:auto;filter:brightness(1.1)}
.placeholder-box{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:150px}
.footer-copyright{background-color:#000000;color:#ffffff;text-align:center;padding:20px;font-size:0.9rem}
@media (max-width:768px){.footer-boxes{padding:40px 15px 30px}.footer-container{gap:30px}.footer-box{padding:25px}}

@keyframes fadeInUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
