body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

header {
    background: #0b2d5c;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.header-inner {
    max-width: 600px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #f5c400;
    border: 1px solid rgba(245, 196, 0, 0.5);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 25px auto;
}

.btn {
    background: #f5c400;
    color: #000;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.btn:hover {
    background: #d4a900;
}

section {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

h2 {
    color: #0b2d5c;
    text-align: center;
    margin-bottom: 30px;
}

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

.grid div {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.grid div:hover {
    transform: translateY(-5px);
}

.grid div h3 {
    color: #0b2d5c;
    margin: 15px 0 10px 0;
}

.icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #0b2d5c;
}

.icon svg {
    width: 28px;
    height: 28px;
}

img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

footer {
    background: #0b2d5c;
    color: #fff;
    text-align: center;
    padding: 25px 20px;
    margin-top: 40px;
}

footer a {
    color: inherit;
}
