/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f7fc;
    color: #333;
}

/* Header Styling */
.header {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.header p {
    font-size: 18px;
}

/* Main Content */
.feedback-section {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.feedback-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.feedback-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}

select,
textarea,
input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #0056b3;
}

/* Footer Styling */
.footer {
    background-color: #007bff;
    padding: 20px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .header h1 {
        font-size: 28px;
    }

    .feedback-section h2 {
        font-size: 24px;
    }

    .feedback-section p {
        font-size: 16px;
    }

    .btn-submit {
        font-size: 16px;
    }
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
