@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background: linear-gradient(120deg, #3b82f6, #ec4899);
}
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #1f2937;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.logo-container {
    animation: fadeIn 2s;
}
.logo {
    max-width: 200px;
}
.form-section {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}
.form-section h1 {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 10px;
    animation: fadeIn 2s;
}
.animated-text {
    animation: fadeIn 2s infinite alternate;
}
.form-section p {
    color: #666;
    margin-bottom: 20px;
}
form {
    display: flex;
    flex-direction: column;
}
form label {
    font-weight: bold;
    margin-bottom: 5px;
}
form input[type="text"],
form input[type="tel"],
form input[type="email"],
form input[type="file"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
}
form button {
    background-color: #3b82f6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
form button:hover {
    background-color: #2563eb;
}
#thank-you-message {
    font-size: 1.2rem;
    color: #10b981;
    margin-top: 20px;
    animation: fadeIn 1s ease-in-out;
}
.hidden {
    display: none;
}
footer {
    text-align: center;
    padding: 10px;
    background-color: #1f2937;
    color: #ffffff;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .form-section {
        margin: 20px;
        padding: 15px;
    }
    form input[type="text"],
    form input[type="tel"],
    form input[type="email"],
    form input[type="file"] {
        font-size: 0.9rem;
    }
    form button {
        font-size: 0.9rem;
    }
}