* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
    line-height: 1.7;
}

.container {
    width: 85%;
    margin: auto;
    max-width: 1200px;
}

header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.subtitle {
    margin: 15px 0;
    font-size: 18px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
    font-weight: bold;
}

.btn-primary {
    background: #ffcc00;
    color: #000;
}

.btn-primary:hover {
    background: #ffaa00;
}

.btn-secondary {
    background: #1e3c72;
    color: white;
}

.btn-secondary:hover {
    background: #16325c;
}

nav {
    background: #222;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 15px 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav ul li a:hover {
    color: #ffcc00;
}

.section {
    padding: 60px 0;
}

.bg-light {
    background: #ffffff;
}

h2 {
    margin-bottom: 20px;
    color: #1e3c72;
}

ul, ol {
    margin: 20px 0 20px 20px;
}

.link-highlight {
    color: #2a5298;
    font-weight: bold;
    text-decoration: underline;
}

footer {
    background: #1e1e1e;
    color: #ccc;
    text-align: center;
    padding: 25px 0;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}