
        /* Global Styles */
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #022f1d;
            color: #f0f0f0;
            text-align:center; /* mb added */
        }

        /* Header */
        header {
            background-color: #004d2b;
            color: #ffffff;
            text-align: center;
            padding: 80px 0;
            animation: slideIn 1s ease-in-out;
        }

        /* Section Headings */
        section h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #ffffff;
            text-align: center;
        }

        /* Pop-up Styles */
        .popup {
            display: none;
            position: fixed;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: #004d2b;
            color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            max-width: 400px;
            text-align: center;
            animation: slideIn 0.5s ease-in-out;
        }

        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
        }

        .close-popup {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background: #ffffff;
            color: #004d2b;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .close-popup:hover {
            background: #eaeaea;
        }

        /* Sections */
        section {
            padding: 40px 0;
            background-color: #024a2a;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 25px;
            background-color: white;
            color: #004d2b;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        }

        .btn:hover {
            background-color: #eaeaea;
            color: #004d2b;
            transform: scale(1.05);
        }

        /* Schedule List Items */
        #schedule ul {
            list-style-type: none;
            padding: 0;
            /* mb added */
			display: inline-block;
			text-align:left;
        }

        /* mb was ...#schedule ul li {*/
        #schedule li {
            background-color: #01513a;
            padding: 15px;
            margin: 10px 0;
            border-left: 6px solid #007bff;
            border-radius: 4px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: popIn 0.5s ease-in-out;
        }

        /* Footer */
        footer {
            background-color: #013423;
            color: #c9ffce;
            text-align: center;
            padding: 30px 0;
            opacity: .9; /* mb was 0 */
            animation: fadeUp 1s ease-in-out forwards;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2.5rem;
            }

            header p, section p {
                font-size: 1rem;
            }

            .container {
                width: 90%;
            }

            section {
                padding: 20px 0;
            }
        }
        
        .cred {
            margin: 0px 10px;
            display:inline-block;
        }

label {
    vertical-align:top;
}
.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; 
}

form {
  width: 75%;
  text-align:left;
  
}
