* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: rgb(252, 250, 248);
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    height: 80px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul a {
    text-decoration: none;
    font-size: 15px;
    margin-left: 30px;
    color: rgb(14, 13, 13);
    transition: color 0.3s ease;
}

.navbar ul a:hover {
    color: rgb(78, 78, 231);
    text-decoration: underline;
}

.contact-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.contact-card {
    background-color: #ffffff;
    padding: 40px;
    width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-card h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-card p {
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.contact-card a {
    color: rgb(78, 78, 231);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-container h1 {
    position: absolute;
    top: 120px;
    font-size: 28px;
    color: #333;
}