body { 
    font-family: 'Segoe UI', Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    line-height: 1.6; 
    color: #333; 
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}
.content-section { 
    padding: 60px 0; 
    flex: 1; 
}
.container { width: 85%; max-width: 1100px; margin: 0 auto; }

header { background: #002D5A; color: white; padding: 15px 0; overflow: hidden; }
.logo { float: left; font-size: 22px; font-weight: bold; letter-spacing: 1px; }
nav { float: right; }
nav ul { margin: 0; padding: 0; list-style: none; }
nav li { display: inline; margin-left: 20px; }
nav a { color: white; text-decoration: none; font-size: 14px; font-weight: 500; }

.hero { background: #E9F1F7; padding: 80px 0; text-align: center; border-bottom: 1px solid #ddd; }
.hero h1 { font-size: 42px; color: #002D5A; margin-bottom: 10px; }
.btn { background: #D9534F; color: white; padding: 12px 25px; text-decoration: none; border-radius: 4px; display: inline-block; margin-top: 20px; font-weight: bold; }

.services-grid, .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { padding: 30px; border: 1px solid #e1e8ed; border-radius: 8px; transition: transform 0.3s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #003366; }

.footer { background: #1a1a1a; color: #f0f0f0; padding: 60px 0 30px 0; margin-top: 50px; }
.footer h4 { color: #ffffff; margin-top: 0; margin-bottom: 20px; font-size: 18px; }
.footer p, .footer a { color: #bbb; font-size: 14px; text-decoration: none; line-height: 1.8; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid #333; text-align: center; color: #777; font-size: 13px; }

.footer-disclaimer { margin-top: 20px; padding-top: 20px; border-top: 1px solid #333; font-size: 11px; color: #555; text-align: left; line-height: 1.4; }

.info-for-website { position: absolute; left: -9999px; top: -9999px; opacity: 0; }