* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: none;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

:root {
  --text-black: #000000;
  --brand-blue: #161b7f;
  --button-orange: #f6a729;
  --background-light-gray: #e5e5e5;
  --text-white: #ffffff;
  --section-gradient: linear-gradient(90deg, var(--brand-blue), #223ccf);
  --color-date: rgb(67, 67, 70);

  --container-width-lg: 80%;
  --container-width-md: 94%;
  --container-width-sd: 95%;

  --border-radius: 10px;
  --border-radius-2: 5px;
}

body {
  height: 100vh;
  width: 100%;
  background-color: var(--background-light-gray);
  color: var(--text-black);
  line-height: 1.7;
  font-family: 'Open Sans', sans-serif;
}

img {
  width: 100%;
  object-fit: cover;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
  color: var(--brand-blue);
}

h2 {
  color: var(--brand-blue);
  font-size: 2rem;
}

h3 {
  color: var(--brand-blue);
  font-size: 1.4rem;
  font-weight: 500;
}

h4 {
  font-size: 1.3;
  font-weight: 400;
  color: var(--brand-blue);
}

p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background-color: var(--button-orange);
  padding: 1rem 2rem;
  font-size: 1rem;
  width: fit-content;
  border-radius: var(--border-radius);
  cursor: pointer;
  box-shadow: 2px -1px 8px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 2px -1px 8px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 2px -1px 8px 0px rgba(0, 0, 0, 0.5);
}

/* Update nav styles to match index page */
nav {
  background-color: var(--text-white);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 5;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.1);
}

.nav_menu {
  display: flex;
  gap: 2rem;
}

.nav_menu li a {
  color: var(--text-black);
  display: block;
  font-size: 1rem;
  transition: all 300ms ease;
}

.nav_menu li a:hover {
  color: var(--brand-blue);
}

.nav_menu li a:active {
  color: var(--brand-blue);
}

.brand-name {
  color: var(--brand-blue);
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  padding: 1rem 0;
}

.brand-name-short {
  display: none;
  color: var(--brand-blue);
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  padding: 1rem 0;
}

.logo-name {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  display: inline-block;
  height: auto;
  width: 2.5rem;
  background-color: var(--button-orange);
}

#open-menu-btn,
#close-menu-btn {
  background-color: transparent;
  display: none;
  color: var(--brand-blue);
  cursor: pointer;
}

nav button i {
  font-size: 1.8rem;
}

.btn-apply {
  background-color: var(--button-orange);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all 300ms ease;
}

.btn-apply:hover {
  background: var(--brand-blue);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo-name {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 3.5rem;
  height: auto;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.brand-name-short {
  display: none;
}

.nav_menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav_menu a {
  color: var(--text-black);
  font-weight: 500;
}

.nav_menu a:hover {
  color: var(--brand-blue);
}

.btn-apply {
  padding: 0.6rem 1rem;
  background: var(--button-orange);
  border-radius: 0.3rem;
}

.btn-apply a {
  color: var(--text-white) !important;
}

#close-menu-btn {
  display: none;
}

#open-menu-btn {
  display: none;
}

@media (max-width: 768px) {
  .nav_menu {
    display: none;
    position: fixed;
    top: 4rem;
    right: 5%;
    background-color: var(--brand-blue);
    height: fit-content;
    width: 15rem;
    flex-direction: column;
    gap: 0;
  }

  .nav_menu li {
    width: 100%;
    height: 4rem;
    animation: animateNavMenu 0.5s linear forwards;
  }

  .nav_menu li a {
    background-color: #223ccf;
    box-shadow: -4rem 6rem 10rem rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    display: grid;
    place-items: center;
    color: var(--text-white);
  }

  .nav_menu li a:hover {
    background-color: var(--brand-blue);
    color: white;
  }

  nav button#open-menu-btn {
    display: block;
  }

  @keyframes animateNavMenu {
    from {
      transform: rotateZ(-90deg);
    }
    to {
      transform: rotateZ(0deg);
    }
  }
}

/* Header Image Styles */
.header-img {
  width: 100%;
  height: 30rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}

.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
}

.header-about {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 90%;
  color: var(--text-white);
}

.header-about h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--button-orange);
}

.header-about p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Footer Styles */
.about-footer-section {
  background: var(--brand-blue);
  padding: 4rem 0;
  margin-top: 4rem;
}

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  color: var(--text-white);
}

.footer h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--button-orange);
}

.footer a {
  color: var(--text-white);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--button-orange);
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer-connect-us i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--button-orange);
}

.about-footer {
  background: var(--brand-blue);
  padding: 1rem 0;
  text-align: center;
  color: var(--text-white);
  margin-top: 2rem;
}

.about-footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Map Section Styles */
.about-google-map {
  background-color: var(--text-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 4rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-google-map h1 {
  color: var(--brand-blue);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-google-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Map Styles */
@media (max-width: 768px) {
  .about-google-map {
    padding: 1rem;
    margin: 2rem 0;
  }

  .about-google-map h1 {
    font-size: 1.8rem;
  }

  .about-google-map iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .about-google-map iframe {
    height: 250px;
  }
}
