﻿main {
    padding: 0 20px;
    background-color: #fdf4ea;
    margin-bottom: 20px;
    margin-top: 20px;
}

.introduction, .eligibility-criteria, .refund-process, .refund-request-form, .refund-timeline, .contact-info, .faqs {
    background-color: white;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

h1, h2 {
    color: #d84315;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input[type="text"], textarea, input[type="file"] {
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    margin-top: 10px;
    padding: 10px;
    background-color: #4caf50; /* Green */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    button:hover {
        background-color: #45a049; /* Darker green */
    }
