 /* Additional inline styles if needed */
 body {
     font-family: 'Arial', sans-serif;
     line-height: 1.6;
     background-color: #f8f9fa;
     padding: 20px;
     max-width: 800px;
     /* Adjust as per your design */
     margin: 0 auto;
     /* Center align content */
     color: #333;
     /* Text color */
 }

 .policy-section {
     margin-bottom: 30px;
     padding: 20px;
     background-color: #ffffff;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     border-radius: 8px;
 }

 .policy-section h2 {
     margin-top: 0;
     color: #333;
     font-size: 24px;
     border-bottom: 2px solid #0cd527cc;
     /* Green border bottom */
     padding-bottom: 10px;
 }

 .policy-section p {
     color: #666;
     font-size: 16px;
     line-height: 1.8;
 }

 h3 {
     text-align: center;
     margin-bottom: 30px;
     font-size: 20px;
 }

 h3 a {
     text-decoration: none;
     color: #090909cc;
     /* Green link color */
     transition: color 0.3s;
 }

 h3 a:hover {
     color: #13c52e;
     /* Darker green on hover */
 }

 .faq-section {
     margin-bottom: 20px;
 }

 .faq-section h3 {
     margin-bottom: 10px;
     font-size: 18px;
     color: #333;
 }

 .faq-section p {
     margin-bottom: 10px;
     font-size: 16px;
     color: #666;
 }

 footer {
     text-align: center;
     margin-top: 50px;
     padding: 10px 0;
     background-color: #0cd527cc;
     /* Green footer background */
     color: #fff;
     /* Footer text color */
 }

 footer p {
     margin: 0;
     font-size: 14px;
 }