/* General Settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

body {
  font-family: 'Forum', serif;
  background-color: #f4f4f9;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Navbar Styling */
header {
  box-shadow: 0 4px 19px rgba(0, 0, 0, 0.65);
  margin-bottom: 20px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px;
  background-color: teal;
  color: #fff;
  transition: background-color 0.5s ease-in-out, box-shadow 2s ease;
}

.navbar:hover {
  background-color: #036e70;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.nav-links a {
  color: #fff;
  margin-right: 15px;
}

.logo img {
  width: auto;
  height: 100px;
}

/* Navbar Menu */
.menu {
  display: flex;
  gap: 1em;
  font-size: 25px;
  padding-right: 100px;
}

.menu li:hover {
  background-color: #4c9e9e;
  border-radius: 5px;
  transition: 1s ease;
}

.menu li {
  padding: 2px 14px;
  margin: 20px;
}

/* Dropdown Menu */
.services {
  position: relative;
}

.dropdown {
  background-color: rgb(1, 139, 139);
  padding: 1em 0;
  position: absolute;
  display: none;
  border-radius: 8px;
  top: 35px;
}

.dropdown li + li {
  margin-top: 10px;
}

.dropdown li {
  padding: 0.5em 1em;
  width: 8em;
  text-align: center;
}

.dropdown li:hover {
  background-color: #4c9e9e;
}

.services:hover .dropdown {
  display: block;
}

input[type=checkbox] {
  display: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}

/* Main Content */
.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .contact-container {
      max-width: 600px;
      margin: 20px auto;
  }
}

.contact-info {
  text-align: center;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 400;
  color: #333;
}

.contact-info p:hover {
  color: #036e70;
  transition: color 0.3s ease-in-out;
}

.contact-info p i {
  margin-right: 10px;
  color: #036e70;
}

/* Call to Action Buttons */
.contact-buttons {
  margin: 20px 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background-color: teal;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #036e70;
}

/* Google Map */
.map-container {
  margin: 20px 0;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .map-container iframe {
      height: 450px;
  }
}

/* Footer */
footer {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.2);
  background-color: teal;
  color: antiquewhite;
}

footer .pcont {
  text-align: center;
  flex: 1;
  margin-left: 10em;
}

footer p {
  line-height: 1.5;
  font-size: small;
}

footer .fbcont {
  margin-right: 0px;
}

footer .fb {
  width: 20%;
  height: auto;
  margin-right: -40px;
}
