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

    body {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      transition: 1s;
    }
        
    header {
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      padding: 1rem 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      backdrop-filter: blur(10px);
      transition: var(--transition);
  }

  .header-right {
    display: flex;
    align-items: center;
  }
  

  /* Navbar */
  
  .nav-logo {
    height: 6rem;
    border-radius: .5rem;
  }

  .nav-links {
    display: flex;
    list-style: none;
    margin-right: 20px;
  }

  .nav-links li {
      margin: 0 1rem;
  }

  .nav-links a {
    text-decoration: none;
    color: black;
    font-size: 1.4rem;
    font-weight: 500;
    transition: 1s;
 }

  .nav-links a:hover {
      color: #F58546;;
  }

  .nav-menu-btn {
    display: none;
  }

  @media (max-width:768px) {
    .nav-menu-btn {
      display: block;
      font-size: 2rem;
      cursor: pointer;
      z-index: 10000;
      color: black;
      margin-left: 12rem;
      position: relative; 
    }
  
    .header-right {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background-color: #F58546;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: right 0.3s ease-in-out;
      z-index: 9999; 
      display: flex;
    }
    .header-right.active {
      right: 0; 
    }
  
    .nav-links {
      flex-direction: column;
      width: 100%;
      margin: 0;
    }
  
    .nav-links li {
      margin: 2rem 0;
      text-align: center;
    }

    .nav-links li a:hover {
       color: bisque;
    }

    
  }

      /* Hero Section */

      .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/phones.jpg');
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
        background-repeat: no-repeat;
        height: 55vh;
      }

      .hero h1 {
        color: wheat;
        padding-top: 9rem;
        font-size: 3.5rem;
        margin-bottom: 1rem;
        /* font-family: 'Alfa Slab One';  */
      }

      .hero p {
        line-height: 1.4;
        font-size: 1.8rem;
        max-width: 600px;
        margin: 0 auto;
      }


      /* Contact */

      .contact-section {
        margin-top: 5rem;
        margin-left: 4rem;
        margin-right: 4rem;
      }

      .contact-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
      }

      .contact-info {
        background-color: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .contact-info h2 {
        font-family: 'Pridi', serif;
        font-size: 2rem;
        color: var(--secondary-color);
        margin-bottom: 30px;
      }

      .contact-detail {
        display: flex;
        margin-left: -3rem;
        margin-bottom: 1.2rem;
      }

      .contact-icon {
        background-color: var(--primary-color);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
      }

      .contact-text h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
      }

      .contact-text p {
        color: #666;
      }

      .contact-hours {
        margin-top: 40px;
      }

      .contact-hours h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--secondary-color);
      }

      .hours-table {
        width: 100%;
      }

      .hours-table tr {
        border-bottom: 1px solid #eee;
      }

      .hours-table td {
        padding: 10px 0;
      }

      .hours-table td:last-child {
        text-align: right;
        font-weight: 600;
      }


      /* Form Styles */

      .contact-form {
        background-color: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .contact-form h2 {
        font-family: 'Pridi', serif;
        font-size: 2rem;
        color: var(--secondary-color);
        margin-bottom: 30px;
      }

      .form-group {
        margin-bottom: 20px;
      }

      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--secondary-color);
      }

      .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
      }

      .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }

      .btn {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 12px 25px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
      }

      .btn:hover {
        background-color: #e55a2b;
      }


      @media (max-width: 768px) {
        .contact-section {
          margin-left: 1.5rem;
          margin-right: 1.5rem;
        }
        
        .contact-container {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        
        .contact-info h2,
        .contact-form h2 {
          font-size: 1.8rem;
        }
      }
      
      @media (max-width: 576px) {
        .contact-section {
          margin-top: 3rem;
          margin-left: 0.5rem;
          margin-right: 0.5rem;
        }
        
        .contact-info,
        .contact-form {
          padding: 25px 20px;
        }
        
        .contact-detail {
          margin-left: -1rem;
          align-items: flex-start;
        }
        
        .contact-icon {
          width: 35px;
          height: 35px;
          background-color: black;
          margin-left: 1rem;
        }
        
        .contact-text h3 {
          font-size: 1.1rem;
        }
        
        .contact-hours h3 {
          font-size: 1.3rem;
        }
        
        .hours-table {
          font-size: 0.9rem;
        }
        
        .hours-table td {
          padding: 8px 0;
        }

        .hours-table td:last-child,
        .hours-table td.times {
           margin-left: -2rem;
        }
        
        .hours-table,
        .hours-table tbody,
        .hours-table tr {
          display: block;
          width: 100%;
        }
        
        .hours-table td {
          display: inline-block;
          width: 50%;
        }
        
        .hours-table td:first-child {
          text-align: left;
        }
        
        .hours-table td:last-child {
          text-align: right;
        }
        
        .form-group {
          margin-bottom: 15px;
        }
        
        .form-control {
          padding: 10px;
          font-size: 15px;
        }
        
        .btn {
          width: 100%;
          padding: 12px 15px;
        }
      }



      /* Map Section */

      .map-section {
        margin-top: 4rem;
        padding: 80px 0;
      }

      .map-container {
        text-align: center;
      }

      .map-container h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
      }

      .map-frame {
        width: 100%;
        height: 450px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }


      /* FAQ Section */

      .faq-section {
        padding: 80px 0;
      }

      .faq-container {
        max-width: 800px;
        margin: 0 auto;
      }

      .faq-title {
        text-align: center;
        margin-bottom: 50px;
      }

      .faq-title h2 {
        font-family: 'Pridi', serif;
        font-size: 2rem;
        color: var(--secondary-color);
      }

      .faq-item {
        background-color: white;
        border-radius: 8px;
        margin-bottom: 20px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
      }

      .faq-question {
        padding: 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: var(--secondary-color);
      }

      .faq-question:hover {
        background-color: #f9f9f9;
      }

      .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }

      .faq-answer.active {
        padding: 0 20px 20px;
        max-height: 200px;
      }

      .faq-toggle {
        font-size: 20px;
        transition: transform 0.3s;
      }

      .faq-toggle.active {
        transform: rotate(180deg);
      }

      @media (max-width:768px) {
        .faq-title {
          margin-left: 1rem;
          margin-right: 1rem;
        }

        .faq-item {
          margin-left: 1rem;
          margin-right: 1rem;
        }
  
      }

      /* Footer */

      .footer {
        position: relative;
        background-image: url("images/footer.png");
        background-size: cover;
        background-position: center;
        color: white;
        overflow: hidden;
        padding-top: 5rem;
        margin-top: 4rem;
      }
      
      .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); 
        z-index: 0;
      }
      
      .footer-container {
        margin-left: 4rem;
        position: relative;
        z-index: 1;
      }
      
      .footer-content-grid {
        display: grid;
        padding-bottom: 3rem;
        grid-template-columns: 1fr 2fr;
      }
      
      .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }
      
      .logo-img {
        border-radius: .5rem;
        height: 6rem;
        margin-bottom: 1rem;
      }
      
      .footer-description {
        width: 100%;
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
        line-height: 1.4;
      }
      
      .footer-socials {
        display: flex;
        gap: 16px;
      }
      
      .footer-socials a {
        background: rgba(255, 255, 255, 0.1);
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: 1s;
      }
      
      .footer-socials a:hover {
        background: #F58546;
        transform: translateY(-3px);
      }
      
      .footer-links-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
      }
      
      .footer-links-column-1 {
        margin-left: 6rem;
      }
      
      .footer-links-column-2 {
        margin-left: 10.5rem;
        width: 100%;
      }
      
      .footer-links-column-1 h4 {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }
      
      .footer-links-column-2 h4 {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }
      
      .footer-links-column-1 h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 40px;
        background-color: #F58546;
      }
      
      .footer-links-column-2 h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 40px;
        background-color: #F58546;
      }
      
      .footer-links-container .footer-connect {
        font-size: 1.5rem;
      }
      
      .footer-menu, .footer-contact {
        list-style: none;
        line-height: 1.5;
        width: 120%;
        padding: 0;
        margin: 0;
      }
      
      .footer-links-column-2 .footer-newsletter {
        font-size: 1.7rem;
      }
      
      .footer-links-column-2 .newsletter-tagline {
        font-size: 1.4rem;
      }
      
      .footer-menu li, .footer-contact li {
        margin-bottom: 12px;
        font-size: 1.3rem;
      }
      
      .footer-menu a {
        font-size: 1.5rem;
        color: white;
        text-decoration: none;
        transition: 1s;
      }
      
      .footer-menu a:hover {
        opacity: 1;
        color: #F58546;
        padding-left: 5px;
      }
      
      .footer-contact li {
        display: flex;
        align-items: center;
      }
      
      .footer-contact span {
        margin-right: 10px;
        width: 20px;
        display: inline-flex;
        justify-content: center;
        color: #F58546;
      }
      
      .footer-subscribe {
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      
      .footer-subscribe input {
        padding: 12px;
        border-radius: 4px;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        color: white;
      }
      
      .footer-subscribe input::placeholder {
        color: rgba(255, 255, 255, 0.6);
      }
      
      .footer-subscribe button {
        padding: 12px;
        border: none;
        background: #F58546;
        color: white;
        border-radius: 4px;
        cursor: pointer;
        transition: 1s;
      }
      
      .footer-subscribe button:hover {
        background: #F58546;
      }
      
      .footer-bar {
        background: rgba(0, 0, 0, 0.5);
        padding: 20px 0;
      }
      
      .footer-bar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      
      .footer-legal {
        display: flex;
        gap: 20px;
      }
      
      .footer-legal a {
        color: white;
        opacity: 0.7;
        text-decoration: none;
        transition: 1s;
      }
      
      .footer-legal a:hover {
        opacity: 1;
      }
      
      
      /* Responsive Styles */
      

      @media (max-width: 768px) {
        .hero h1 {
          font-size: 2.5rem;
        }

        .footer-links-container {
          grid-template-columns: 1fr;
        }

        .footer-bar-content {
          flex-direction: column;
          gap: 15px;
          text-align: center;
        }
      }

      @media (max-width: 768px) {
        .footer {
          position: relative;
          background-image: url("images/footer.png");
          background-size: cover;
          background-position: center;
          color: white;
          overflow: hidden;
          padding-top: 5rem;
          margin-top: 4rem;
        }
      
        .footer-container {
          margin-left: -3.5rem;
        }
        
        /* Change the layout to stack items vertically */
        .footer-content-grid {
          display: flex;
          flex-direction: column;
        }
      
        /* Ensure footer-brand appears first */
        .footer-brand {
          order: 1;
          margin-bottom: 3rem; /* Add space between sections */
        }
      
        /* Ensure footer-links-container appears second */
        .footer-links-container {
          order: 2;
          grid-template-columns: 1fr;
       
        }
      
        .footer-logo {
          margin-left: 5rem;
        }
        
        .footer-description {
          margin-left: 5rem;
          width: 75%;
        }
      
        .footer-bar-content {
          flex-direction: column;
          gap: 15px;
          text-align: center;
        }
      
        .footer-socials {
          margin-left: 5rem;
        }
      
        /* Reset the negative margins and align with parent */
        .footer-connect {
          margin-left: -1rem;
        }
        
        .footer-contact {
          margin-left: -1rem;
          margin-bottom: 2rem;
    
         
        }
        
        .footer-newsletter {
          width: 75%;
          margin-top: 1rem;
          margin-left: -5.2rem;
        }
      
        .newsletter-tagline {
          margin-left: -5.2rem;
          width: 75%;
        }
      
        .footer-subscribe {
          margin-left: -5.2rem;
          width: 65%;
        }
      }
      