
#map {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
}

.google-map {
    width: 100%;
    height: 100%;
    border: none;
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
    iframe, .sidebar img {
        max-width: 100%;
    }
}

.outerwide {
	float: left;
	position: relative;
}
/* Styling for contact info section */
.contact-info {
    background: #fbfbfb;
    padding: 20px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .contact-info {
        background: #171717;
    }
}

/* Align icons and text in contact info */
.contact-info p,
.contact-info .phone,
.contact-info .fax,
.contact-info .web {
    display: flex; /* Align icon and text */
    align-items: center;
    margin-bottom: 0px; /* Space between each contact item */
    color: #929292; /* Text color */
}

.contact-info .man,
.contact-info .fax,
.contact-info .web {
    margin-bottom: 10px; /* Space between each contact item */
}

/* Ensure consistent alignment by adding margin to fax and web items */
.contact-info .fax,
.contact-info .web {
    margin-left: 35px; /* Align these items with the address, phone, and email */
}

/* Style for the icons */
.contact-info p i,
.contact-info .phone i,
.contact-info .fax i,
.contact-info .web i {
	font-size: 20px;
	margin-right: 15px;
	width: 20px;
	margin-bottom: 0px;
	float: left;
	margin-top: -7px;
}

/* Contact form adjustments */
.contact-form {
    margin: 0 0 5px;
    color: #929292;
}

/* Styling for contact form labels */
.contact-form label {
    margin: 0 10 0 5px;
    display: block; /* Change from float to block to avoid layout issues */
    color: #929292;
}

.form-group {
    margin-bottom: 15px; /* Space between form groups */
    width: 100%; /* Ensure form groups take up full width */
    clear: both; /* Clear floats to keep elements from wrapping */
}

.Contact-name, .contact-email, .Contact-subject {
    float: left;
    width: 278px;
    margin: 4px 0;
    padding: 8px 5px;
    background: none;
    border: 1px solid #dbdbdb;
    color: #c5c5c5;
    clear: both;
}

@media (prefers-color-scheme: dark) {
    .Contact-name, .contact-email, .Contact-subject {
        border: 1px solid #3e3e3e;
    }
}

textarea {
    border: 1px solid #dbdbdb;
    background: none;
    width: 100%;
    height: 100px;
    clear: both;
    float: left;
    padding: 5px;
    resize: vertical;
    color: #c5c5c5;
}

@media (prefers-color-scheme: dark) {
    textarea {
        border: 1px solid #3e3e3e;
    }
}

.contact-form input:focus, textarea:focus {
    border: 1px solid #999;
}

.contact-form .send {
    padding: 10px 15px;
	margin-top: 15px;
    cursor: pointer;
    color: #FFF;
    clear: both;
    float: left;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ee6c6d), to(#bc393a)); /* Safari 4-5, Chrome 1-9 */
    background: -webkit-linear-gradient(top, #ee6c6d, #bc393a); /* Safari 5.1, Chrome 10+ */
    background: -moz-linear-gradient(top, #ee6c6d, #bc393a); /* Firefox 3.6+ */
    background: -ms-linear-gradient(top, #ee6c6d, #bc393a); /* IE 10 */
    background: -o-linear-gradient(top, #ee6c6d, #bc393a); /* Opera 11.10+ */
    background-color: #ea4748;
}

@media (prefers-color-scheme: dark) {
    .contact-form .send {
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1cade2), to(#0c80aa)); /* Safari 4-5, Chrome 1-9 */
        background: -webkit-linear-gradient(top, #1cade2, #0c80aa);/* Safari 5.1, Chrome 10+ */
        background: -moz-linear-gradient(top, #1cade2, #0c80aa); /* Firefox 3.6+ */
        background: -ms-linear-gradient(top, #1cade2, #0c80aa); /* IE 10 */
        background: -o-linear-gradient(top, #1cade2, #0c80aa);/* Opera 11.10+ */
        background-color: #1cade2;
    }
}

.contact-form .send:hover {
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bc393a), to(#ee6c6d)); /* Safari 4-5, Chrome 1-9 */
    background: -webkit-linear-gradient(top, #bc393a, #ee6c6d); /* Safari 5.1, Chrome 10+ */
    background: -moz-linear-gradient(top, #bc393a, #ee6c6d); /* Firefox 3.6+ */
    background: -ms-linear-gradient(top, #bc393a, #ee6c6d); /* IE 10 */
    background: -o-linear-gradient(top, #bc393a, #ee6c6d);/* Opera 11.10+ */
    background-color: #555;
    text-decoration: none;
}

@media (prefers-color-scheme: dark) {
    .contact-form .send:hover {
        background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0c80aa), to(#1cade2)); /* Safari 4-5, Chrome 1-9 */
        background: -webkit-linear-gradient(top, #0c80aa, #1cade2);/* Safari 5.1, Chrome 10+ */
        background: -moz-linear-gradient(top, #0c80aa, #1cade2); /* Firefox 3.6+ */
        background: -ms-linear-gradient(top, #0c80aa, #1cade2); /* IE 10 */
        background: -o-linear-gradient(top, #0c80aa, #1cade2);/* Opera 11.10+ */
    }
}
