* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #ff8c00, #e53935);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.container {
    width: 100%;
    padding: 20px;
}

.card {
    max-width: 600px;
    margin: auto;
    background: #ffffff;
    color: #333;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.logo {
    max-width: 220px;
    margin-bottom: 20px;
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #e53935;
}

.tagline {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.services span {
    background: #ff8c00;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.services span:nth-child(3) {
    background: #4caf50; /* green accent */
}

.notify {
    font-size: 15px;
    margin-bottom: 30px;
    color: #666;
}

footer {
    font-size: 13px;
    color: #888;
}
