body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: linear-gradient(to bottom right, #0081fa21, #ffffff);
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    max-width: 700px;
    padding: 20px;
}

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

h1 {
    font-size: 48px;
    color: #1c1c39;
    margin-bottom: 20px;
}

p {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info {
    margin: 20px 0;
    flex: 0 0 auto;
    text-align: center;
}

.contact-info a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.contact-info p {
    margin: 5px 0;
    font-size: 16px;
    color: #333;
}

.contact-info i {
    margin-right: 10px;
    color: #0082fa;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #0082fa;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #333;
}

