/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: #333; }

/* Containers */
.container { width: 90%; max-width: 1200px; margin: auto; }

/* Header */
header { background: #002147; color: white; padding: 1rem 0; position: sticky; top: 0; z-index: 1000; }
#branding { display: flex; flex-direction: column; align-items: center; }
#branding img { height: 60px; margin-bottom: 0.5rem; }
#branding h1 { font-size: 1.5rem; font-weight: 600; }
#branding .tagline { font-size: 0.9rem; font-style: italic; color: #77dd77; }
nav ul { display: flex; flex-wrap: wrap; list-style: none; justify-content: center; margin-top: 0.5rem; }
nav ul li { margin: 0 10px; }
nav ul li a { color: white; text-decoration: none; padding: 5px 10px; transition: 0.3s; }
nav ul li a:hover { background: #77dd77; color: #002147; border-radius: 4px; }

/* Hero */
.hero { background: url("Grd1.jpg") center/cover no-repeat; color: white; text-align: center; padding: 6rem 1rem; }
.hero h2 { font-size: 2rem; margin-bottom: 1rem; }
.hero .btn { display: inline-block; background: #77dd77; color: #002147; padding: 0.8rem 1.2rem; border-radius: 5px; text-decoration: none; font-weight: 600; }
.hero .btn:hover { background: #4CAF50; }

/* Sections */
.section { padding: 3rem 0; }
.section h2 { text-align: center; margin-bottom: 1.5rem; color: #002147; }

/* Cards Section */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.card { background: #f8f8f8; padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.card h3 { margin-bottom: 1rem; color: #002147; }

/* Tables */
.table-container { margin-bottom: 2rem; }
table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
table th, table td { padding: 10px; border: 1px solid #ddd; text-align: left; }
table th { background: #002147; color: white; }
table tr:nth-child(even) { background: #f9f9f9; }

/* Contact */
.contact form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.contact input, .contact textarea { padding: 10px; border: 1px solid #ccc; border-radius: 5px; }
.contact button { background: #002147; color: white; border: none; padding: 0.8rem; border-radius: 5px; cursor: pointer; }
.contact button:hover { background: #77dd77; color: #002147; }

/* Footer */
footer { background: #002147; color: white; text-align: center; padding: 1rem 0; margin-top: 2rem; }
