:root {
    --background-light: #f9f9fb;
    --card-bg: #ffffff;
    --text-dark: #1e1e25;
    --text-muted: #666;
    --accent: #7048e8;
    --accent-light: #ece7ff;
  }
  
  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #eceaff, #f8f7fe);
    text-align: center;
    padding: 96px 24px;
    position: relative;
    overflow: hidden;
  }
  
  .hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  .hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
  }
  
  .cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .cta:hover {
    background-color: #8d5aff;
  }
  
  .cta.secondary {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
  }
  
  .cta.secondary:hover {
    background-color: var(--accent);
    color: #fff;
  }
  
  /* Services Section */
  .services {
    background-color: var(--background-light);
    padding: 64px 24px;
    text-align: center;
  }
  
  .services h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-dark);
  }
  
  .service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .service {
    background-color: var(--card-bg);
    padding: 24px;
    border-radius: 8px;
    max-width: 300px;
    flex: 1 1 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #e4e4ec;
  }
  
  .service h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--accent);
  }
  
  .service p {
    color: var(--text-muted);
    font-size: 15px;
  }
  
  /* Highlight Section */
  .highlight {
    background-color: #f3f0ff;
    padding: 64px 24px;
    text-align: center;
  }
  
  .highlight blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .highlight span {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
  }
  
  /* Contact Section */
  .contact {
    background-color: #f6f4fe;
    padding: 64px 24px;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  
  .contact p {
    max-width: 600px;
    margin: 0 auto 32px;
    color: var(--text-muted);
  }
  
  /* Responsive Layout */
  @media (max-width: 768px) {
    .service-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .hero h1 {
      font-size: 28px;
    }
  
    .hero p,
    .contact p {
      font-size: 16px;
    }
  }
  