
        @font-face {
            font-family: 'Bold';
            src: url('fonts/Montserrat-Bold.ttf') format('truetype');
        }

        @font-face {
            font-family: 'Black';
            src: url('fonts/Montserrat-Black.ttf') format('truetype');
        }

        @font-face {
            font-family: 'Regular';
            src: url('fonts/Montserrat-Regular.ttf') format('truetype');
        }

        @font-face {
            font-family: 'Light';
            src: url('fonts/Montserrat-Light.ttf') format('truetype');
        }


        .title {
            font-family: 'Light', Arial, sans-serif;
            color: #2F5496;
            font-size: 24px;
            /* font-weight: bold; */
        }

        .bold {
            font-family: 'Regular', Arial, sans-serif;
            color: #000000;
            font-size: 18px;
            /* font-weight: bold; */
        }



        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #333;
            color: white;
            padding: 10px 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            z-index: 1000;
        }
        main {
            margin-top: 90px; /* Adjust this value based on the header height */
            padding: 20px;
        }


        .rounded-button {
    	    display: inline-block;
            background-color: #F15922; /* Button color */
            color: white; /* Button text color */
            border: none; /* Remove default border */
            padding: 10px 20px; /* Add padding for size */
            border-radius: 50px; /* Fully round the button */
            font-size: 16px; /* Text size */
            font-family: Arial, sans-serif; /* Font style */
            cursor: pointer; /* Pointer cursor on hover */
            transition: background-color 0.3s ease; /* Smooth color transition */
            text-decoration: none;
        }

        /* Hover effect */
        .rounded-button:hover {
            background-color: #D1481E; /* Darker shade on hover */
        }

        /* Reset body margins and padding */
        body {
            margin: 10;
            padding: 0;
            /*font-family: Arial, sans-serif;*/
            font-family: 'Light', sans-serif;
            font-size: 18px;
        }

        /* Container with fixed width equal to the screen size */
        .container {
            width: 100%; /* Fixed width to match the screen */
            max-width: 100vw; /* Prevent overflow */
            box-sizing: border-box;
            padding: 20px;
        }

        /* Example content */
        h1 {
            text-align: center;
            color: #333;
        }

        p {
            font-size: 16px;
            line-height: 1.5;
            text-align: justify;
            color: #666;
        }

        .button {
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 20px auto;
            padding: 10px;
            text-align: center;
            background-color: #007BFF;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 18px;
        }

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