:root {
    --main-color: #991C22;
    --secondary-color: #FFD812;
  }
  .header {
    position: relative;
    width: 100%;
    overflow: visible;
    height: 70vh!important;
  }
  .header-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    height: 70vh!important;
  }
  .main-title {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%);
    font-size: 10rem ;
    font-weight: 800;
    color: #facc15;
    text-align: center;
  }
  .heroTitle{
    position: absolute;
    top: 0;
    font-size: 10rem;
    left: 22%;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 9%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.logo{
    width: 65px;
    height: auto;
    margin-right: 20px;
}
  .contact-container {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    box-sizing: border-box;
    justify-content: center;
  }
  @media screen and (max-width: 768px) {
    #header {
      align-items:center;
      height: fit-content;
      padding: 15px 20px;
    }
    .topnav {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
    }
    .topnav .icon {
      display: block;
      align-self: flex-end;
      margin-bottom: 10px;
      margin: auto 0;
    }
    .topnav .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #991C22;
      padding: 10px 0;
    }
    .topnav .nav-links.show {
      display: flex;
    }
    .topnav .nav-links a {
      padding: 12px 20px;
      width: 100%;
      text-align: left;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    nav a:hover span{
      opacity: 0 !important;
    }
  }
  @media (min-width: 640px) {
    .contact-container {
      flex-direction: row;
      padding: 0 2rem;
    }
  }
  @media (min-width: 768px) {
    .contact-container {
      padding: 0 4rem;
    }
  }
  .contact-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 1.5rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }
  .card-title {
    color: #7a1c24;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  .card-icon {
    color: #7a1c24;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .card-text {
    font-weight: 800;
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .card-subtext {
    font-weight: 700;
    font-size: 1rem;
  }
  @media (max-width: 768px) {
    .heroTitle {
      font-size: 6rem;
      left: 50%;
      transform: translateX(-50%);
      margin-top: 20%;
      text-align: center;
      width: 90%;
    }
    .header {
      height: auto;
    }
    .header-image {
      height: 50vh !important;
    }
    .contact-container {
      position: static;
      
      transform: none;
      margin-top: 2rem;
      flex-direction: column;
      align-items: center;
      width: 100%;
      padding: 0 1rem;
    }
    .contact-card {
      width: 100%;
      max-width: 90%;
      margin-bottom: 1.5rem;
      display: block;
    }
    .card-title {
      font-size: 1.2rem;
    }
    .card-icon {
      font-size: 2rem;
    }
    .card-text {
      font-size: 1rem;
    }
    .main-title {
      font-size: 4rem;
      top: 15%;
      left: 50%;
      transform: translateX(-50%);
    }
    .white-section {
      height: 50vh !important;          
      background-color: #fff;
    }
    .contact-section{
      flex-direction: column-reverse !important;
      gap: 40px;
    }
  }
  .white-section {
    height: 20vh;          
    background-color: #fff;
  }
  .contact-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px;
    gap: 60px;
    background-color: #fff;
  }
  .social-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .social-links div {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    color: #000;
  }
  .social-links i {
    font-size: 35px;
    color: var(--main-color);
    margin-right: 15px;
  }
  .map-wrapper {
    position: relative;
    width: 300px;
    height: 250px;
  }
  .map-background {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    z-index: 0;
  }
  .map-frame {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    border: none;
  }
  @media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
      gap: 40px;
    }
  }