body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #F4EFE6;
    color: #2B2B2B;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    background: #2F6DAE;
    color: white;
    padding: 15px 0;
}

header h1 {
    margin: 0;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background: linear-gradient(rgba(47,109,174,0.8), rgba(47,109,174,0.8)),
    url('https://images.unsplash.com/photo-1549692520-acc6669e2f0c') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #BC002D;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #a00025;
}

.section {
    padding: 60px 0;
}

.bg-light {
    background-color: #ffffff;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #F4EFE6;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    border-radius: 8px;
}

.faq h4 {
    margin-bottom: 5px;
}

footer {
    background: #2F6DAE;
    color: white;
    text-align: center;
    padding: 15px 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 45px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.brand-sub {
    color: #BC002D;
    font-size: 13px;
    letter-spacing: 1px;
}

