        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		
@font-face {
  font-display: swap; 
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/merriweather-v30-latin-regular.woff2') format('woff2'); 
}
		
        html, body {
            height: 100%;
            overflow: hidden;
            font-family: Merriweather, serif;
        }

        body {
            display: flex;
            justify-content: center;
            align-items: center;
            
			background-color: #c8e4f5;
        }
		
		ul { 
  			padding-left: 2em;
			list-style-type: square;
		}

        .logo {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 10vh;
            height: auto;
        }

        .content-box {
            position: absolute;
            top: 100px; 
            bottom: 80px;
            width: 80%;
            margin: auto;
            background: rgba(255, 255, 255, 0.7); 
            border-radius: 10px; 
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }

        .content-box h1 {
            font-family: Merriweather, serif;
            font-size: 1.7em;
            text-align: center;
            margin: 20px 0;
            color: #333;
        }
		
		.content-box h4 {
            font-family: Merriweather, serif;
            font-size: 1.3em;
            margin: 20px 0;
            color: #333;
        }

        .content-box .scrollable {
            height: calc(100% - 60px);
            overflow-y: auto;
            padding: 20px;
            color: #333;
            font-size: 1em;
            line-height: 1.6;
        }

        .footer {
            color: #3a7688;
			background-color: #ffffff;
			opacity: 0.9;
            position: absolute;
            bottom: 0px;
            width: 100%;
            text-align: center;
			line-height: 3.4;
			font-size: 0.9em;
        }

        .footer a {
            color: #3a7688;
            text-decoration: none;
            margin: 0 10px;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .container {
            text-align: center;
        }

        h1 {
            font-family: Merriweather, serif;
			color: #02364E;
            font-size: clamp(54px, 4.6vw, 200px);
        }

        h2 {
            font-family: Arial, sans-serif;
			color: #02364E;
			font-size: clamp(14px, 1vw, 50px);
  			margin-top: 10px;
        }


        .video-bg-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .video-bg-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .logo {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 100px;
            z-index: 2;
        }

        .container {
            position: relative;
            z-index: 1;
            text-align: center;
            color: white;
            padding-top: 6vh;
        }




