/* === Base Styles === */
body {
    margin: 0;
    font-family: "Lato", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3 {
    font-family: "Lato", Open Sans, Roboto;
    color: #102a43;
}

a {
    color: #1a73e8;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* nav */
header {
  background: #0b2545;
  color: white;
  padding: 1rem 2rem;
}
.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* === Navbar === */
.navbar {
    background-color: #0b2545;
    color: white;
    padding: 1rem 0;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-text {
  font-size: clamp(0.9rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}

.highlight {
  color: #9DB4C0;
}
.navbar .logo {
    font-size: 1.4rem;
    font-weight: bold;
}
.navbar .logo a {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    color: white;
}
.navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
}
.navbar a {
	color: white;
    font-weight: 500;
}
.navbar a:hover {
    color: #99c1de;
}
.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #9DB4C0;
}
/* === Hero === */
.hero {
    background: linear-gradient(to bottom right, #102a43, #243b55);
    color: white;
    text-align: center;
    padding: 6rem 1rem;
}
.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.hero p {
    max-width: 650px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}
.btn-primary {
    background-color: #00a8e8;
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    font-weight: bold;
}
.btn-primary:hover {
    background-color: #0090c5;
}

/* === Sections === */
.section {
    padding: 4rem 0;
}
.section.light {
    background-color: #f8f9fa;
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* === Grid Layouts === */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* === Cards === */
.card {
    background: white;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.card h3 {
    color: #0b2545;
    margin-bottom: 1.15rem;
	font-size: 1.15rem;
	font-weight: bold;
	font-family:Merriweather, serif;
}

/* === Buttons === */
.btn-secondary {
    display: inline-block;
    background-color: #1a73e8;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    margin-top: 1rem;
}
.btn-secondary:hover {
    background-color: #155ab6;
}

/* === Footer === */
footer {
    background-color: #0b2545;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}
