/* Header styles matching your terms page */
  header {
    background: #000;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header img {
    height: 45px;
  }
  
  .menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #FFD400;
  }
  
  nav {
    display: flex;
  }
  
  nav a {
    color: #fff;
    margin-left: 18px;
    font-size: 14px;
    text-decoration: none;
  }
  
  nav a:hover, nav a.active {
    color: #FFD400;
  }

  /* Contact page specific styles */
  .contact-hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 80px 20px 60px;
    text-align: center;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .section {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .contact-info {
    flex: 1;
    min-width: 300px;
  }

  .contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #111;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #FFD400;
  }

  .section h3 {
    color: #FFD400;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    text-align: left;
  }

  .section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #FFD400;
  }

  .contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
  }

  .contact-item i {
    color: #FFD400;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
  }

  .contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
  }

  .contact-item p {
    color: #aaa;
  }

  .social-links {
    margin-top: 40px;
  }

  .social-links h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #FFD400;
  }

  .social-icons {
    display: flex;
    gap: 15px;
  }

  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 212, 0, 0.2);
    border-radius: 50%;
    color: #FFD400;
    transition: all 0.3s;
  }

  .social-icons a:hover {
    background-color: #FFD400;
    color: #000;
    transform: translateY(-3px);
  }

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

  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #aaa;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: #FFD400;
    background-color: rgba(255, 255, 255, 0.15);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .submit-btn {
    background-color: #FFD400;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
  }

  .submit-btn:hover {
    background-color: #FFE55C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 212, 0, 0.4);
  }

  .app-download {
    margin-top: 40px;
    text-align: center;
  }

  .app-download h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #FFD400;
  }

  .app-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
  }

  .app-button {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #000;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
    border: 1px solid #333;
  }

  .app-button:hover {
    transform: translateY(-3px);
    border-color: #FFD400;
  }

  .app-button i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #FFD400;
  }

  .app-button span {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
  }

  .app-button strong {
    font-size: 1rem;
  }

  /* Additional contact features */
  .contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
  }
  
  .feature-card {
    background: #111;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border-top: 4px solid #FFD400;
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  .feature-card i {
    font-size: 40px;
    color: #FFD400;
    margin-bottom: 20px;
  }
  
  .feature-card h4 {
    color: #FFD400;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .feature-card h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #FFD400;
  }
  
  .feature-card p {
    color: #aaa;
  }

  /* Hero section */
  .hero-title {
    font-size: 48px;
    color: #FFD400;
    margin-bottom: 20px;
    position: relative;
  }

  /* Footer styles */
  footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #000;
    color: #aaa;
  }
  
  footer a {
    color: #FFD400;
    text-decoration: none;
    margin: 0 10px;
  }
  
  footer a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }

    nav {
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      background: #000;
      flex-direction: column;
      display: none;
      padding: 20px;
    }

    nav.active {
      display: flex;
    }

    nav a {
      margin: 10px 0;
      padding: 10px;
      border-bottom: 1px solid #222;
    }
    
    nav a:last-child {
      border-bottom: none;
    }

    .section {
      flex-direction: column;
    }

    .app-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .contact-hero {
      padding: 120px 20px 60px;
    }
  }
   .contact-row-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
  }
  
  .contact-row-container > h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FFD400;
    font-size: 1.8rem;
  }
  
  .contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
  }
  
  .contact-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FFD400;
  }
  
  .contact-item i {
    font-size: 1.8rem;
    color: #FFD400;
    margin-bottom: 1rem;
  }
  
  .contact-item h4 {
    color: #FFD400;
    margin-bottom: 0.5rem;
  }
  
  .contact-item p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
  }
  
  .emergency {
    color: #FFD400 !important;
    margin-top: 10px !important;
    font-weight: 500;
  }
  
  .social-row, .app-row {
    text-align: center;
    margin: 2rem 0;
  }
  
  .social-row h4, .app-row h4 {
    color: #FFD400;
    margin-bottom: 1rem;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .social-icons a {
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD400;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background: #FFD400;
    color: #000;
    transform: scale(1.1);
  }
  
  .app-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .app-button {
    display: flex;
    align-items: center;
    background: #333;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    min-width: 200px;
  }
  
  .app-button:hover {
    background: #444;
    transform: translateY(-3px);
  }
  
  .app-button i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #FFD400;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-row {
      flex-direction: column;
      align-items: center;
    }
    
    .contact-item {
      width: 100%;
      max-width: 400px;
    }
    
    .app-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .app-button {
      width: 100%;
      max-width: 300px;
    }
  }