/* General body styles */
body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    background-image: url('../Images/bgtotal.svg');
    background-size: cover;
    font-family: Raleway, Arial, sans-serif;
}

/* Navbar styles */
.navbar {
    font-family: Raleway, Arial, sans-serif;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    height: 60px;
    display: flex;
    align-items: center;
}

.navbar-logo {
    float: left;
    margin-right: 10px;
}

.navbar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.navbar a {
    display: inline-block;
    font-size: 16px;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown {
    font-family: Raleway, Arial, sans-serif;
    font-weight: bold;
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    background-color: inherit;
}

.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #ffffff;
    border-bottom: 2px solid #87d8d6;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: none;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ffffff;
}

.fa-caret-down {
    font-size: 20px;
}

/* Footer styles */
.footer {
    background-color: #bed9d7;
    text-align: center;
    position: fixed;
    bottom: 0;
    padding: 0;
    width: 100%;
    height: 2.5rem;
}

.footer .fa {
    font-size: 20px;
}

.footer-text {
    display: inline-block;
    vertical-align: middle;
}

.footer-icons {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.fa {
    padding: 1px;
    font-size: 16px; /* Adjusted size */
    width: 40px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
    font-size: 36px;
    color: #3b5998;
}

.fa-instagram {
    font-size: 36px;
    color: #962fbf;
}

/* Adjust icon sizes */
.location-icon, .email-icon {
    font-size: 60px; /* Adjust size as needed */
    color: #bed9d7;
}

/* Contact info styles */
.contact-info {
    display: flex;
    justify-content: space-between; /* Distributes space between items */
    align-items: flex-start; /* Aligns items to the top */
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-icon, .email-icon {
    font-size: 60px; /* Adjusted icon size */
    color: #bed9d7;
}

.contact-text {
    margin: 0;
    font-size: 18px;
    color: #bed9d7;
}

.email-item {
    text-align: right; /* Align text to the right */
}

.address-item {
    text-align: left; /* Align text to the left */
}

/* Content styles */
#content-wrap {
    padding-bottom: 4rem;
}

.content {
    width: 65%;
    margin: 0 auto;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 10px;
}

h1, h2, h3 {
    font-family: "Bungee Shade", Arial, sans-serif;
}

h4, h5, h6 {
    font-family: "Bungee", Arial, sans-serif;
}

form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

h5 {
    font-family: "Bungee", Arial, sans-serif;
    margin-top: 20px;
    margin-bottom: 10px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: Raleway, Arial, sans-serif;
}

textarea {
    resize: none;
}

.center {
    text-align: center;
}

input[type="submit"] {
    width: 33%;
    padding: 10px;
    background-color: #bed9d7;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #a1c8c4;
}

#otherContactInput {
    display: none;
}

.contact-table {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
}

.container-box {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
}

.text-content {
    text-align: center;
}

.contact-box {
    display: flex;
    justify-content: space-between;
}

.text-box {
    text-align: center;
    flex-basis: 50%;
    padding: 10px;
    box-sizing: border-box;
}

.social-media {
    font-size: 24px; /* Fixed size value */
    color: #3b5998;
    margin-right: 10px;
}

.social-media:hover {
    opacity: 0.7;
}

.email {
    font-size: 36px;
    color: #bed9d7;
}

.contact-text {
    font-size: 14px;
}

.contact-svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

#formSelection {
    width: 500px;
}
	