* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1f3c88;
}

.container {
    text-align: center;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
}

.logo {
    max-width: 280px;
    margin-bottom: 20px;
}

h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.tagline {
    font-style: italic;
    color: #2ec4b6;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 15px;
    color: #ffb703;
}

.desc {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
}

.contact-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #1f3c88;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #2ec4b6;
}

.footer {
    margin-top: 25px;
    font-size: 12px;
    color: #888;
}
