

.footer {
    width: 100%;
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
}


.footer-links {
    margin-bottom: 10px;
}


.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

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


        .popup-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            justify-content: center;
            align-items: center;
        }

.popup-content {
    background: white;
	    color: black;
    padding: 30px;
    border-radius: 12px;
    width: 700px;
    height: 400px;
            text-align: left;
    position: relative;
}


.contact-us-response-message {
    display: flex;
    justify-content: center; /* Centers text horizontally */
    align-items: center; /* Centers text vertically */
    text-align: center; /* Ensures text is aligned properly */
    height: 200px; /* Adjust based on pop-up size */
}


/* Inner wrapper for scrollable content */

.scroll-wrapper {
    max-height: 350px; /* Allows scrolling inside */
    overflow-y: auto; /* Enables scrollingi */
    padding-right: 10px; /* Moves scrollbar inward */
}

/*
        .close-btn {
            position: absolute;
            top: 10px;
            right: 12px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            background: none; 
        }
*/

        .close-btn {
            position: absolute;
            top: 10px;
            right: 12px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            background-color: white;
	color: black;
        }

.footer-copyright {
    font-size: 14px;
}

    h1, h2, h3 {
      color: #1a365d;
    }

    h1 {
      font-size: 2em;
      margin-bottom: 0.2em;
    }

    h2 {
      margin-top: 1.5em; 
      margin-bottom: 0.5em;
    }

.contact-us-html-button {
    display: flex;
    justify-content: center; /* Centers the button horizontally */
}

.contact-us-html button {
	width: 250px;
            background: #444;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
}
    .contact-us-html h2 {
      margin-top: 0px; 
    }

    h3 {
      margin-top: 1em;
      margin-bottom: 0.4em;
    }

    .footer-ul ul {
      margin: 0.5em 0 1em 2em; 
    }

    a {
      color: #3182ce;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      .policy-container {
        padding: 14px 6px;
      }
    }

        /* Form Styling */

        form {
            display: flex;
            flex-direction: column;
        }

        input, textarea {
            margin: 10px 0;
            padding: 10px;
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 6px;
        }

        textarea {
            resize: none;
            height: 120px;
        }

	textarea:focus {
	outline: none;
	}

/*     052025
        button {
            background: #444;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
        }
*/


/*
        button:hover {
            background: #333;
        }
*/

        .confirmation-message {
            display: none;
            color: green;
            font-weight: bold;
        }


