/* ===== Services Section ===== */
#services {
    --primary-color: #ff6b00; /* ISKCON Orange */
    --secondary-color: #4a148c; /* Deep Purple */
    --text-color: #333;
    --light-bg: #f9f9f9;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    padding: 5rem 0;
    background-color: var(--light-bg);
  }
  
  #services .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  #services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  #services h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto;
    border-radius: 2px;
  }
  
  #services > .section-container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .service {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    padding: 2rem;
    position: relative;
  }
  
  .service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
  }
  
  .service:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  }
  
  .service .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .service h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }
  
  .service p {
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    color: var(--text-color); /* Preserved original text color */
  }
  
  .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
  }
  
  .btn:hover {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
  }
  
  /* ===== Responsive Adjustments ===== */
  @media (max-width: 768px) {
    #services {
      padding: 3rem 0;
    }
    
    #services h2 {
      font-size: 2rem;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    #services .section-container {
      padding: 0 1rem;
    }
    
    .service {
      padding: 1.5rem;
    }
  }