.intro-lead {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 20px;
  }
  
  .intro-highlight {
    font-size: 1.1em;
    color: #ff9900;
    font-weight: bold;
    margin-bottom: 30px;
    animation: pulseHighlight 2s infinite;
  }
  
  .testimonials {
    background-color: #222;
    color: #eee;
    padding: 40px 20px;
    text-align: center;
  }
  
  .testimonials h3 {
    font-size: 1.8em;
    color: #ff0033;
    margin-bottom: 30px;
  }
  
  .testimonials blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 600px;
    border-left: 4px solid #ff0033;
    padding-left: 20px;
  }
  
  .services {
    background-color: rgba(0, 0, 0, 0.6);
    color: #eee;
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255,0,51,0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }
  
  .services h3 {
    font-size: 1.8em;
    color: #ff0033;
    margin-bottom: 30px;
  }
  
  .service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .service-button {
    position: relative;
    width: 280px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s ease;
    border: 4px solid transparent;
    background-clip: padding-box;
  }
  
  .service-button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 4px;
    background: linear-gradient(45deg, #ff0033, #ff9900);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
  }
  
  .service-overlay {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 20px;
  }
  
  .service-overlay h4 {
    font-size: 1.2em;
    margin-bottom: 5px;
    font-family: 'Orbitron', sans-serif;
  }
  
  .service-overlay p {
    font-size: 0.95em;
  }
  
  .service-button:hover {
    transform: scale(1.05);
  }
  