@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

.logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

h1 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.brand {
    color: #a6245a;
}

p {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}

.contact {
    margin-top: 20px;
    border-top: 2px solid #a6245a;
    padding-top: 15px;
}

.contact h2 {
    font-size: 18px;
    color: #a6245a;
    font-weight: 600;
}

.contact p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
