  /* Additional styles specific to contact page */
    .contact-hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../images/main.png');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 120px 0 80px;
      text-align: center;
    }
     
    .contact-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      font-weight: 700;
    }
    
    .contact-hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    .contact-content {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 60px;
    }
    
    .contact-info {
      flex: 1;
      min-width: 300px;
    }
    
    .contact-form-container {
      flex: 1;
      min-width: 300px;
      background: #f9f9f9;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-detail {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
    }
    
    .contact-icon {
      background: #F2360A;
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
    }
    
    .contact-detail-text h3 {
      margin-bottom: 5px;
      color: #333;
    }
    
    .contact-detail-text p {
      color: #666;
      line-height: 1.6;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }
    
    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: #F2360A;
      color: white;
      border-radius: 50%;
      transition: all 0.3s ease;
    }
    
    .social-link:hover {
      background: #d32f09;
      transform: translateY(-3px);
    }
    
    .form-title {
      text-align: center;
      margin-bottom: 25px;
      color: #333;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #333;
    }
    
    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
      transition: border 0.3s;
    }
    
    .form-control:focus {
      border-color: #F2360A;
      outline: none;
    }
    
    .submit-btn {
      background: #F2360A;
      color: white;
      border: none;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
      width: 100%;
      margin-top: 10px;
    }
    
    .submit-btn:hover {
      background: #d32f09;
    }
    
    .map-section {
      padding: 60px 0;
      background: #f9f9f9;
    }
    
    .map-container {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      height: 400px;
    }
    
    .map-placeholder {
      width: 100%;
      height: 100%;
      background: #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
      font-size: 1.2rem;
    }
    
    .faq-section {
      padding: 60px 0;
    }
    
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .faq-item {
      margin-bottom: 20px;
      border: 1px solid #eee;
      border-radius: 5px;
      overflow: hidden;
    }
    
    .faq-question {
      padding: 20px;
      background: #f9f9f9;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: #333;
    }
    
    .faq-question i {
      transition: transform 0.3s;
    }
    
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    
    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s, padding 0.3s;
    }
    
    .faq-item.active .faq-answer {
      padding: 20px;
      max-height: 500px;
    }
    
    .business-hours {
      background: #f9f9f9;
      padding: 60px 0;
    }
    
    .hours-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      margin-top: 40px;
    }
    
    .hours-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      flex: 1;
      min-width: 250px;
      max-width: 350px;
      text-align: center;
    }
    
    .hours-card h3 {
      margin-bottom: 20px;
      color: #333;
      border-bottom: 2px solid #F2360A;
      padding-bottom: 10px;
    }
    
    .hours-list {
      list-style: none;
      padding: 0;
    }
    
    .hours-list li {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }
    
    .hours-list li:last-child {
      border-bottom: none;
    }
    
    @media (max-width: 768px) {
      .contact-hero h1 {
        font-size: 2.5rem;
      }
      
      .hours-container {
        flex-direction: column;
        align-items: center;
      }
      
      .hours-card {
        width: 100%;
        max-width: 100%;
      }
    }