body {
    background-color: #1e1e1e;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    padding: 20px;
}

header {
    text-align: center;
    margin: 40px auto 20px;
}

.tagline {
    color: #ccc;
    font-size: 1.1rem;
    margin-top: -10px;
}

#hr-contact {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 500px;
    text-align: left;
}

#hr-contact h2 {
    color: #00bfa5;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#hr-contact p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

#hr-contact input,
#hr-contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #1e1e1e;
    color: #fff;
}

#hr-contact button {
    background-color: #00bfa5;
    color: #1e1e1e;
    padding: 10px 20px;
    border: none;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}

#hr-contact button:hover {
    background-color: #00a58c;
}