body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Start hidden for animation */
    transform: translateY(20px); /* Start slightly lower */
    animation: fadeInUp 0.6s forwards; /* Animation for fade-in */
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #333;
}

.contact-info, .contact-form {
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 15px;
}

h2 {
    color: #007bff;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s; /* Transition for border color */
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #007bff; /* Change border color on focus */
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s; /* Transition for background color */
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s; /* Transition for link color */
}

a:hover {
    text-decoration: underline;
    color: #0056b3; /* Darker blue on hover */
}

/* Animation Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1; /* Fully visible */
        transform: translateY(0); /* Move to original position */
    }
}