* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
  }
  body {
    background-color: black;
  }  
  .services-wrapper {
    padding: 40px;
    display: flex;
    justify-content: center;
  }  
  .services-section {
    max-width: 1200px;
    text-align: center;
  }  
  .services-section h1 {
    color: red;
    text-transform: uppercase;
    font-size: 2em;
    margin-bottom: 10px;
  }  
  .services-section p {
    margin-bottom: 20px;
    color: #ffffff;
  }  
  .intro-text {
    font-size: 1.1em;
    color: #ffffff;
    margin-bottom: 30px;
  }
  .services-container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }  
  /* Service Card Styles */
  .service-card {
    position: relative;
    color: white;
    background-color: #262626b6;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-image 0.3s ease;
    overflow: hidden;
    z-index: 1;
  }  
  .service-card:hover {
    transform: translateY(-10px);
    background-color: #262626;
  }
  /* Service Card Content */
  .icon {
    font-size: 2em;
    color: #ff3366;
    margin-bottom: 15px;
    transition: color 0.3s ease;
  }  
  .service-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    transition: color 0.3s ease;
  }  
  .service-card p {
    color: white;
    font-size: 0.95em;
    transition: color 0.3s ease;
  }  
  /* Button Styles */
  .learn-more-btn {
    background-color: red;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }  
  .learn-more-btn:hover {
    background-color: darkred;
  }
  /* Change text color on hover */
  .service-card:hover .icon,
  .service-card:hover h3,
  .service-card:hover p,
  .service-card:hover .learn-more-btn {
    color: white;
  }
  