/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

header {
    background: #003366;
    color: #fff;
    padding: 15px 0;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 0;
}

header nav ul li a:hover {
    text-decoration: underline;
}

.hero {
    background: #004080;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom 20px;
}

.btn {
    display: inline-block;
    background: #ffcc00;
    color: #003366;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e6b800;
}

.services {
    background: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #003366;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-card {
    background: #f0f8ff;
    border: 1px solid #cce0ff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.service-card h3 {
    color: #003366;
    margin-bottom: 12px;
}

footer {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #003366;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #555;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form button {
    background: #004080;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.contact-form button:hover {
    background: #003060;
}

/* Page specific styling */
.page-content h2 {
    color: #003366;
    margin-top: 30px;
}
.page-content h3 {
    color: #004080;
    margin-top: 25px;
}
.page-content p {
    margin-bottom: 16px;
}
.page-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}