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

.contact-container {
    max-width: 600px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(140, 82, 255, 0.1);
    text-align: center;
}

.logo {
    width: 80px;
    margin-bottom: 10px;
}

h1 {
    color: #8c52ff;
    font-size: 28px;
}

p {
    color: #555;
}

.contact-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(140, 82, 255, 0.1);
}

.icon {
    width: 50px;
    height: 50px;
}

.contact-btn {
    text-decoration: none;
    background: #8c52ff;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #6e38d3;
}
