 /* General styles */
 body {
     font-family: Arial, sans-serif;
     background-color: #f4f4f4;
     margin: 0;
     padding: 0;
     /*color:#b5579e #fa8561 #454566 #898a9d #cd98ab #4c4c7c;*/
 }

 .hidden {
     display: none;
 }

 .container {
     max-width: 1000px;
     margin: 0 auto;
     padding: 20px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     margin-bottom: 20px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border-radius: 8px;
     color: #000;
     font-weight: 200;
     background: #fff;
 }

 .container:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
 }

 /* Typography */
 h1 {
     font-size: 2.5rem;
     color: #0c6b4c;
     margin-bottom: 10px;
 }

 h2,
 h3 {
     color: #0c6b4c;
     margin-bottom: 10px;
 }

 p,
 ul {
     font-size: 1rem;
     line-height: 1.6;
     margin-bottom: 20px;
 }

 /* List styling */
 ul {
     list-style-type: square;
     margin-left: 20px;
 }

 /* Button styling */
 button {
     background-color: #007BFF;
     color: white;
     padding: 10px 20px;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     font-size: 1rem;
 }

 button:hover {
     background-color: #0056b3;
     transform: scale(1.05);
 }

 /* Animations */
 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .container {
     animation: fadeIn 1s ease;
 }

 /* Responsive */
 @media (max-width: 768px) {
     h1 {
         font-size: 2rem;
     }

     h2 {
         font-size: 1.5rem;
     }

     p,
     ul {
         font-size: 0.9rem;
     }
 }


 /* General Reset */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 /* Header Styling */
 header {
     background-color: #333;
     padding: 15px 0;
     position: relative;
     width: 100%;
     top: 0;
     z-index: 100;
     margin-bottom: 10px;
 }

 /* Navigation Styling */
 nav {

     justify-content: center;
     /* Center the navigation */
 }

 /* Navigation Links */
 nav ul {
     list-style: none;
     display: flex;
     gap: 20px;
 }

 nav ul li {
     display: inline-block;
 }

 nav ul li a {
     color: white;
     text-decoration: none;
     font-size: 18px;
     padding: 10px 10px;
     transition: background-color 0.3s ease, color 0.3s ease;
 }

 nav ul li a:hover {
     background-color: #b5579e;
     /* Gold background on hover */
     color: #fff;
     /* Dark text on hover */
     border-radius: 5px;
     /* Rounded corners on hover */
 }