    @font-face {
      font-family: "GT Walsheim", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
      src: url('assets/fonts/GT-Walsheim-Regular-Trial-BF651b7fc71a47d.otf') format('otf');
      font-weight: 700;
      font-style: normal;
    }
    .hero {
      height: 50vh;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .hero-overlay {
      background-color: rgba(45, 62, 80, 0.6);
      padding: 3rem;
      color: white;
      width: 100%;
    }
    .contact-card {
      transition: all 0.3s ease;
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      height: 100%;
    }
    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .contact-icon {
      font-size: 2rem;
      color: #e84b3d;
      margin-bottom: 1rem;
    }
    .form-control {
      border-radius: 8px;
      padding: 12px 15px;
      border: 1px solid #ddd;
    }
    .form-control:focus {
      border-color: #e84b3d;
      box-shadow: 0 0 0 0.25rem rgba(232, 75, 61, 0.25);
    }
    .map-container {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    footer {
      background-color: #111;
      color: #bbb;
      padding: 2rem 0;
    }
    .text-shadow {
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }
    .nav-link {
      color:#fff;
    }
    .logo-border {
      border: 2px solid white;
      border-radius: 4px;
      padding: 4px;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
    }
    .navbar-brand:hover .logo-border {
      border-color: rgba(255, 255, 255, 0.8);
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
      transform: scale(1.02);
    }
    .section-header {
      position: relative;
      margin-bottom: 3rem;
    }
    .section-header:after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: #e84b3d;
    }
    .btn-submit {
      background: #e84b3d;
      color: white;
      padding: 12px 30px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .btn-submit:hover {
      background: #c23325;
      transform: translateY(-2px);
    }
    .navbar-nav .nav-link {
    position: relative;
    padding-bottom: 5px;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:focus,
  .navbar-nav .nav-link:hover {
    color: #fff;
  }
  
  .navbar-nav .nav-link.active::after,
  .navbar-nav .nav-link:focus::after,
  .navbar-nav .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(1);
    transition: transform 0.3s ease;
  }
  
  .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }