* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; background-color: #f8f9fa; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Header & Nav */
.site-header { background-color: #002b5c; color: #fff; padding: 1rem 0; }
.header-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo a { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 15px; }
.logo-img { max-height: 50px; width: auto; background-color: transparent; border-radius: 0px;}
.logo-text { font-weight: 600; font-size: 1.5rem; }
.logo-text span { font-weight: 300; color: #a8b8d0; }

.main-nav ul { list-style: none; display: flex; gap: 1.5rem; }
.main-nav a { color: #fff; text-decoration: none; font-weight: 400; transition: color 0.3s ease; }
.main-nav a:hover, .main-nav a.active { color: #a8b8d0; }

/* Hero */
.hero { background-color: #e9ecef; padding: 0rem 0; text-align: center; border-bottom: 1px solid #dee2e6; }
.hero h3 { font-size: 1.2rem; color: #002b5c; margin-bottom: 0rem; }
.hero p { font-size: 1.2rem; color: #555; }

/* Layout & Cards */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card { background: #fff; padding: 1.5rem; padding-top:10px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-top: 4px solid #002b5c; }
.card h3 { font-size: 1.5rem; color: #002b5c; margin-bottom: 1.5rem; border-bottom: 1px solid #eee; padding-bottom: 0.5rem; }
.feature-list { list-style: none; }
.feature-list li { padding: 0.5rem 0; border-bottom: 1px solid #f1f1f1; color: #555; }

/* Images */
.profile-img { width: 100%; height: 280px; object-fit: cover; border-radius: 4px; margin-bottom: 1.5rem; background-color: #f1f3f5; display: block; }
.content-img { width: 100%; max-height: 100%; object-fit: contain; border-radius: 0px; margin: 1rem 0; background-color: #f1f3f5; display: block; }

/* Footer */
.site-footer { background-color: #212529; color: #adb5bd; padding: 2rem 0; margin-top: 3rem; }
.footer-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-links a { color: #adb5bd; text-decoration: none; margin-right: 1.5rem; font-size: 0.9rem; }
.footer-links a:hover { color: #fff; }

@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 1rem; }
    .main-nav ul { flex-wrap: wrap; justify-content: center; }
}