body {
            font-family: "Times New Roman", Times, serif;
            background-color: #eaf6ff; /* Pale Blue */
            margin: 0;
            padding: 20px;

            text-align: left;
        }
        /* Navigation Bar */
        nav {
            background-color: #333;
            overflow: hidden;
        }

        nav ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        nav ul li {
            padding: 15px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
        }

        nav ul li a:hover {
            text-decoration: underline;
        }

        /* Smooth Scroll Effect */
        html {
            scroll-behavior: smooth;
        }

        /* Button Style */
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #5c9e96;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            margin-bottom: 10px;
            white-space: nowrap;
        }

        .btn:hover {
            background-color: #4b7f73;
        }

        /* Image Styling */
        .signature-img {
            display: block;
            margin: 20px auto;
            width: 200px;
            height: auto;
        }

        .caption {
            text-align: center;
            font-style: italic;
            font-size: 0.9em;
            color: #333;
        }

        /* Footer */
        footer {
            text-align: center;
            margin-top: 20px;
            padding: 10px;
            background-color: #333;
            color: white;
        }

        /* Header Style (Navy Blue) */
        h1 {
            text-align: center;
            color: navy;
        }

        h2 {
            text-align: left;
            color: black;

        }
        h3 {
            text-align: left;
            color: black;
            font-size: 1.15em;
        }
        h4 {
            text-align: left;
            color: black;
            font-size: 1.22em;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            nav ul {
                flex-direction: row; /* Horizontal alignment on all screen sizes */
                justify-content: center;
            }
        }

        /* The Modal (background) */
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            padding-top: 60px;
        }

        .modal-content {
        background-color: #fefefe;
        margin: 5% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;

        /* Enable vertical scrolling when content overflows */
        max-height: 80vh; /* Restrict height to fit the screen */
        overflow-y: auto; /* Enable scrolling */
    }

    /* Optional: Customize scrollbar for better UX */
    .modal-content::-webkit-scrollbar {
        width: 8px;
    }
    .modal-content::-webkit-scrollbar-thumb {
        background-color: #007BFF; /* Blue scrollbar */
        border-radius: 4px;
    }
    .modal-content::-webkit-scrollbar-track {
        background-color: #f1f1f1; /* Light gray track */
    }

        /* Close Button */
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        /* I Accept Button */
        .accept-btn {
            background-color: #5c9e96;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
            border: none;
            margin: 0 auto;
            display: block; /* Make button block-level for centering */
        }

        .accept-btn:hover {
            background-color: #4b7f73;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        table, th, td {
            border: 1px solid black;
        }

        th, td {
            padding: 10px;
            text-align: center;
        }

.dropdown-heading {
    font-size: 20px; /* Adjust font size */
    font-weight: bold; /* Bold font */
    color: blue; /* Blue color for link-like appearance */
    text-decoration: underline; /* Underline like a hyperlink */
    cursor: pointer; /* Hand pointer on hover */
}

.dropdown-heading:hover {
    color: darkblue;
}
        .glossary a {
    text-decoration: none;
}

        /* Centering the Form */
        .form-container {
            max-width: 400px;
            margin: 0 auto;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .form-container input[type="email"],
        .form-container button {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border-radius: 5px;
            border: 1px solid #ccc;
            box-sizing: border-box;
        }

        .form-container input[type="email"] {
            font-size: 1em;
        }

        .back-btn {
            background-color: #007BFF; /* Blue Background */
            color: white;
            border-radius: 5px;
        padding: 10px;  /* Match padding of Sign Up button */
        text-decoration: none;
        display: inline-block;
        width: 95%;  /* Ensure full width to match Sign Up button */
        margin-bottom: 15px;
        }

        .back-btn:hover {
            background-color: #0056b3;
        }

        .sign-up-btn {
            background-color: #28a745 !important; /* Force background color */
    color: white !important;
        }

        .sign-up-btn:hover {
            background-color: #218838;
        }
        .sub-btn {
    background-color: #28a745;
    color: white;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 1em;
    cursor: pointer;
    text-align: center;
}

.sub-btn:hover {
    background-color: #218838;
}
.form-actions {
  display: flex;
  justify-content: flex-end;  /* Aligns the buttons to the right */
  gap: 10px;
  margin-top: 10px;
}