body { font-family: Arial !important; margin: 0; }
.main { max-width: 900px; margin: auto; padding: 20px; margin-bottom: 50px; }
h2 { background: #f2f2f2; padding: 10px; }
.section { padding: 15px 0 0; }
.section:last-of-type { padding: 15px 0; }
form { border: 1px solid #f2f2f2; padding: 30px; border-radius: 10px; box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3); }
input:not([type="checkbox"]), textarea { width: 100%; padding: 8px; margin: 6px 0 15px 0; }
select { width: 100%; padding: 8px; margin: 6px 0 15px 0; }
.terms-and-condition { display: inline-flex; align-items: center; }
.submit-btn { width: 100%; padding: 10px; border-radius: 10px; font-size: 20px; background: black; color: white; cursor: pointer; }
#loaderOverlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.8); justify-content: center; align-items: center; z-index: 9999; display: none; }
.spinner { border: 6px solid #ddd;  border-top: 6px solid #007bff; border-radius: 50%; width: 60px; height: 60px; animation: spin 1s linear infinite; }
.sub-section { width: 100%; align-items: center; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
footer { display: flex; justify-content: center; gap: 1rem; background: #777777; padding: 20px; }
footer .image-wrapper img { width: 100%}
footer .image-wrapper { display: flex; justify-content: center; align-items: center; width: 16.6%; }
.modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); }
.modal-content { background: #fff; width: 420px; padding: 25px; border-radius: 10px; margin: 10% auto; text-align: center; position: relative; }
.close { position: absolute; right: 12px; top: 10px; font-size: 22px; cursor: pointer; }
.btn { background: #007bff; padding: 10px 18px; border: none; color: #fff; border-radius: 6px; cursor: pointer; margin-top: 10px; }
.btn:hover { background: #0056b3; }
.popup { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); justify-content: center; align-items: center; z-index: 99999; }
.popup-content { background: #fff; padding: 20px 30px; border-radius: 10px; text-align: center; font-size: 18px; box-shadow: 0 0 20px rgba(0,0,0,0.2); }