        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            background-color: #f0f2f5;
            color: #333;
            margin: 0;
            padding: 20px;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
          .redirect-button {
  display: inline-block;
  height: 30px;
  width: 75px;
  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);
}


        .container {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
            max-width: 850px;
            margin: 20px auto;
            animation: fadeIn 0.8s ease-out;
            flex-grow: 1;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        h1, h2, h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }

        h1 {
            font-size: 2.2em;
            text-align: center;
            margin-bottom: 30px;
            color: #0056b3;
        }

        h2 {
            font-size: 1.8em;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 10px;
            margin-top: 30px;
        }

        h3 {
            font-size: 1.4em;
            color: #007bff;
            margin-top: 25px;
        }

        p {
            margin-bottom: 15px;
        }

        ul {
            list-style: disc;
            margin-left: 25px;
            margin-bottom: 15px;
        }

        ul li {
            margin-bottom: 8px;
        }

        .highlight {
            background-color: #e6f7ff;
            padding: 10px 15px;
            border-left: 5px solid #007bff;
            margin-bottom: 20px;
            border-radius: 5px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            overflow: hidden;
        }

        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        th {
            background-color: #007bff;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
        }

        tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        tr:hover {
            background-color: #f1f1f1;
        }

        .conclusion {
            background-color: #e9f5e9;
            border-left: 5px solid #28a745;
            padding: 20px;
            margin-top: 30px;
            border-radius: 8px;
        }

        .footer-note {
            text-align: center;
            margin-top: 40px;
            font-size: 0.9em;
            color: #666;
            padding-top: 20px;
            border-top: 1px dashed #e0e0e0;
        }

        b {
            color: #0056b3;
        }

        /* Image Specific Styles */
        .image-container {
            text-align: center;
            margin: 25px 0;
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            display: block; /* Remove extra space below image */
            margin: 0 auto;
        }

        .image-caption {
            font-size: 0.9em;
            color: #555;
            margin-top: 10px;
        }

        /* Footer styles */
        .footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 40px 20px;
            margin-top: 50px;
            border-radius: 12px;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            gap: 30px;
        }

        .footer-logo, .footer-contact, .footer-social {
            flex: 1;
            min-width: 250px;
            padding: 15px;
            text-align: center;
        }

        .footer-logo h2 {
            color: #3498db;
            margin-bottom: 10px;
            font-size: 1.8em;
        }

        .footer-logo p {
            font-size: 0.9em;
            line-height: 1.5;
            color: #bdc3c7;
        }

        .footer-contact h3, .footer-social h3 {
            color: #3498db;
            margin-bottom: 15px;
            font-size: 1.3em;
        }

        .footer-contact p {
            margin: 8px 0;
            font-size: 0.95em;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-contact p i {
            margin-right: 10px;
            color: #3498db;
        }

        .footer-contact a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact a:hover {
            color: #3498db;
        }

        .footer-social a {
            color: #ecf0f1;
            font-size: 1.8em;
            margin: 0 12px;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .footer-social a:hover {
            color: #3498db;
        }
        .footer-social .term {
            margin-top: 20px;
        }

        .footer-social .term a {
            font-size: 1em;
            color: #3498db;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s ease;
        }

        .footer-social .term a:hover {
            color: #ecf0f1;
        }

        .footer-social .term i {
            margin-right: 8px;
            font-size: 1.2em;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #3a536b;
            font-size: 0.85em;
            color: #bdc3c7;
        }

        /* Mobile responsiveness for content */
        @media (max-width: 768px) {
            .container {
                padding: 20px;
                margin: 10px;
            }
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.5em;
            }
            h3 {
                font-size: 1.2em;
            }
            table, thead, tbody, th, td, tr {
                display: block;
            }
            thead tr {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }
            tr {
                border: 1px solid #ddd;
                margin-bottom: 15px;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            }
            td {
                border: none;
                position: relative;
                padding-left: 50%;
                text-align: right;
            }
            td::before {
                content: attr(data-label);
                position: absolute;
                left: 10px;
                width: calc(50% - 20px);
                padding-right: 10px;
                white-space: nowrap;
                text-align: left;
                font-weight: 600;
                color: #2c3e50;
            }
            td:last-child {
                border-bottom: 0;
            }

            /* Mobile responsiveness for footer */
            .footer-container {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .footer-logo, .footer-contact, .footer-social {
                min-width: unset;
                width: 100%;
                padding: 10px;
            }
            .footer-social a {
                font-size: 1.5em;
                margin: 0 8px;
            }
        }