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

a {
    text-decoration:
        none;
}

.container {
    text-align: center;
}

.brand-name {
    margin: 15px 0 5px;
}

.divider {
    border: none;
    border-top: 2px solid #00c6ff;
    width: 200px;
    margin: 30px auto;
}

.contact-card {
    background-color: white;
    padding: 25px;
    width: 300px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-card p {
    margin: 15px 0;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
}

.contact-card i {
    color: #00aaff;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}