.grecaptcha-badge { visibility: hidden; }

.myButton {
	background:linear-gradient(to bottom, #ffffff 5%, #ffffff 100%);
	background-color:#ffffff;
	border-radius:42px;
	border:5px solid #027aae;
	display:inline-block;
	cursor:pointer;
	color:#027aae;
	font-family:Arial;
	font-size:25px;
	font-weight:bold;
	padding:6px 40px;
	text-decoration:none;
		position: fixed;
         bottom: 20px; 
         right: 10px;
         z-index: 9999;
         text-align: center;
}
.myButton:hover {
		background: linear-gradient(to bottom, #ffffff 5%, #ffffff 100%);
		background-color: #ffffff;
	color: #027aae;
	border: 5px solid #027aae;
}

.form-container {
    background-color: #B6DBFF;
    border: 2px solid #B6DBFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.6);
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    box-sizing: border-box; 
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    pointer-events: none;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-col {
    flex-basis: 48%;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #fff;
}

input[type="number"] {
    width: calc(100% - 20px); 
}

textarea {
    width: calc(100% - 22px);
    height: 100px;
}

label {
    font-weight: bold;
    margin: 10px 0 5px;
    display: block;
}


input[type="submit"],
input[type="button"],
button {
    background-color: #27AAE2;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 4px;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
    background-color: #1e90d6;
}

@media (max-width: 600px) {
    .form-col {
        flex-basis: 100%;
    }
}


.footer {
	background-color: #336699;
	color: white;
	padding: 40px 0;
	font-family: Arial, sans-serif;
}

.footer-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-section {
	flex: 1;
	margin: 20px;
	min-width: 250px;
}

.footer-section h3 {
	font-size: 18px;
	margin-bottom: 20px;
	color: #ffffff;
	border-bottom: 2px solid #27aae2;
	display: inline-block;
	padding-bottom: 5px;
}

.footer-links {
	display: flex;
	flex-direction: column;
}

.footer-links a {
	color: #ffffff;
	text-decoration: none;
	margin: 10px 0; 
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #27aae2;
}

.footer-section p {
	margin: 10px 0;
}

.social-icons {
	display: flex;
	gap: 10px;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #27aae2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: background-color 0.3s;
}

.social-icon:hover {
	background-color: #1e90d6;
}

.social-icon i {
	font-size: 20px;
}

@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
	}

	.footer-section {
		margin: 20px 0;
		text-align: center;
	}

	.social-icons {
		justify-content: center;
	}
}
