* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Aptos, Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #333;
	line-height: 1.5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: #0a3d62;
    color: white;
    padding: 15px 0;
}
p {
	text-indent: 2em;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.hero {
    background: linear-gradient(135deg, #0a3d62, #1e5f8c);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff9f43;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

.section {
    padding: 50px 0;
}

.bg-light {
    background: #ffffff;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background: #0a3d62;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background: #0a3d62;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    padding: 8px 12px;
    display: block;
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0000ff;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 150px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.dropdown-menu li a {
    padding: 10px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}
