body {
    background: #f5f7fa;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: #002147;
    color: white;
    padding: 15px;
    text-align: center;
}

.hero {
    background: #f4f4f4;
    padding: 50px;
    text-align: center;
}

section {
    padding: 30px;
}

h2 {
    color: #1e3a8a;
}

.btn {
    background: #ff6600;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
}
/* Container */
.container {
    width: 90%;
    margin: auto;
}

/* HEADER */
.site-header {
    background: #1e3a8a;
    padding: 15px 0;
    color: white;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 24px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* HERO SECTION */
.hero {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1588072432836-e10032774350') no-repeat center center/cover;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* BUTTON */
.btn {
    background: #f59e0b;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
}

body {
    background: #f5f7fa !important;
}