body { margin: 0; font-family: 'Segoe UI', sans-serif; background-color: #f4f4f9; display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; }

/* Header */
.main-header { background: #ffffff; padding: 15px 40px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); display: flex; align-items: center; }
.logo-container { display: flex; align-items: center; gap: 20px; }
.logo { height: 60px; width: auto; }
.header-text h1 { margin: 0; font-size: 1.5rem; color: #213874; text-transform: uppercase; }

/* Hero */
.hero { background: #213874; height: 250px; color: white; display: flex; justify-content: center; align-items: center; text-align: center; }
.hero h2 { font-size: 2.5rem; color: #f3ab1b; margin-bottom: 5px; } 

/* Content */
.container { max-width: 1000px; margin: -40px auto 40px; position: relative; z-index: 2; padding: 20px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); text-align: center; border-top: 5px solid #1a6ac3; transition:0.3s;}
.card:hover { transform: translateY(-5px); }
.icon-box { font-size: 40px; color: #213874; margin-bottom: 20px; }
.btn { display: inline-block; padding: 10px 25px; background: #1a6ac3; color: white; border-radius: 25px; font-weight: bold; margin-top: 15px; }
.btn:hover { background: #f3ab1b; color: #213874; }
.disabled { opacity: 0.6; pointer-events:none; }

/* Footer */
.main-footer { background-color: #213874; color: white; padding-top: 40px; margin-top: auto; }
.footer-content { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; padding: 0 20px 40px; }
.footer-col h4 { color: #f3ab1b; margin-bottom: 20px; border-bottom: 2px solid #1a6ac3; display: inline-block; padding-bottom: 5px; }
.footer-col p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 10px; color: #ddd; }
.footer-col i { color: #f3ab1b; margin-right: 10px; width: 15px; }
.btn-outline { border: 1px solid #f3ab1b; color: #f3ab1b; padding: 8px 15px; border-radius: 4px; font-size: 0.9rem; transition: 0.3s; }
.btn-outline:hover { background: #f3ab1b; color: #213874; }
.social-links { display: flex; gap: 15px; }
.social-links a { font-size: 1.5rem; color: white; transition: 0.3s; }
.social-links a:hover { color: #f3ab1b; }
.footer-bottom { background: #1a1a2e; text-align: center; padding: 15px; font-size: 0.85rem; color: #888; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom a { color: #f3ab1b; font-weight: bold; }