/* Basic body styling for font, margin, padding, and background */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f4f7f6;
            color: #333;
            line-height: 1.6;
        }
        /* Container for the main content, creating the "box" style */
        .container {
            max-width: 800px;
            margin: 20px auto;
            background-color: #f0f8ff; /* Changed background color to a light blue (AliceBlue) */
            padding: 30px;
            border-radius: 12px; /* Rounded corners for the box */
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* Soft shadow for depth */
            opacity: 0; /* Start with opacity 0 for fade-in animation */
            animation: fadeIn 1s ease-out forwards; /* Apply fade-in animation */
        }
        /* Header styling */
        .header {
            text-align: center;
            margin-bottom: 30px;
        }
        .header h1 {
            color: #2c3e50;
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        .redirect-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #4c6ef5, #15aabf);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(21, 170, 191, 0.4);
  position: relative;
  
  overflow: hidden;
}

.redirect-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: left 0.5s ease-in-out;
}

.redirect-button:hover::before {
  left: 130%;
}

.redirect-button:hover {
  box-shadow: 0 6px 16px rgba(21, 170, 191, 0.6);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .redirect-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
        /* Language selection buttons styling */
        .lang-buttons {
            text-align: center;
            margin-bottom: 30px;
        }
        .lang-buttons button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 10px 20px;
            margin: 0 10px;
            border-radius: 25px; /* Pill-shaped buttons */
            cursor: pointer;
            font-size: 1em;
            transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effects */
            box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
        }
        .lang-buttons button:hover {
            background-color: #0056b3;
            transform: translateY(-2px); /* Slight lift on hover */
        }
        /* Section headings styling */
        h2 {
            color: #2980b9;
            font-size: 1.8em;
            margin-top: 30px;
            border-bottom: 2px solid #e0e0e0; /* Underline for headings */
            padding-bottom: 10px;
        }
        /* Paragraph styling */
        p {
            margin-bottom: 15px;
            text-align: justify; /* Justified text for better readability */
        }
        /* Image container for centering and styling images */
        .image-container {
            text-align: center;
            margin: 25px 0;
        }
        .image-container img {
            max-width: 100%; /* Ensure images are responsive */
            height: auto;
            border-radius: 8px; /* Rounded corners for images */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease; /* Smooth zoom on hover */
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        /* Table styling */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: 0.95em;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
        }
        table th, table td {
            border: 1px solid #ddd;
            padding: 12px 15px;
            text-align: left;
        }
        table th {
            background-color: #ecf0f1;
            color: #34495e;
            font-weight: bold;
        }
        table tr:nth-child(even) {
            background-color: #f9f9f9; /* Zebra striping for table rows */
        }
        table tr:hover {
            background-color: #f1f1f1; /* Highlight row on hover */
        }
        /* Conclusion section styling */
        .conclusion {
            margin-top: 40px;
            padding: 20px;
            background-color: #e8f6f3;
            border-left: 5px solid #2ecc71; /* Green border for emphasis */
            border-radius: 8px;
            font-style: italic;
        }

        /* Keyframes for initial fade-in animation of the whole container */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px); /* Start slightly below */
            }
            to {
                opacity: 1;
                transform: translateY(0); /* End at original position */
            }
        }

        /* Styles for elements that will animate on scroll */
        .section, .conclusion {
            opacity: 0; /* Initially hidden */
            transform: translateY(-30px); /* Changed: Start slightly ABOVE its final position */
            transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition */
        }

        /* Class added when element is in view to trigger animation */
        .section.fade-in-scroll, .conclusion.fade-in-scroll {
            opacity: 1;
            transform: translateY(0); /* Move to its final position (downwards) */
        }

        /* Media queries for mobile responsiveness */
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }
            .container {
                padding: 20px;
                margin: 10px auto;
            }
            .header h1 {
                font-size: 2em;
            }
            h2 {
                font-size: 1.5em;
            }
            .lang-buttons button {
                padding: 8px 15px;
                font-size: 0.9em;
                margin: 0 5px;
            }
        }
    