/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f7fdfd;
    color: #222;
    line-height: 1.6;
}

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

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

/* ===== Navigation ===== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

nav h1 {
    font-size: 22px;
    color: #0a58ca;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

nav ul li a:hover {
    color: #0a58ca;
}

/* ===== Hero Section ===== */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #e6faf9;
    padding: 80px 0;
}

.hero .hero-text {
    flex: 1;
    min-width: 320px;
}

.hero h1 {
    font-size: 38px;
    color: #0a5858;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero .btn {
    padding: 15px 25px;
    background-color: #0a58ca;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.hero .btn:hover {
    background-color: #084298;
}

/* Hero image */
.hero .hero-img {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

.hero .hero-img img {
    max-width: 100%;
    height: auto;
}

/* ===== Sections ===== */
.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 28px;
    color: #0a58ca;
    margin-bottom: 25px;
}

.section p, .section ul {
    font-size: 16px;
}

.section ul {
    margin-left: 20px;
}

.section-alt {
    background-color: #f0f9f9;
}

/* ===== Footer ===== */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #0a58ca;
    color: white;
    margin-top: 40px;
}
