:root {
    --primary: #bb86fc;
    --secondary: #03dac6;
    --background: #121212;
    --surface: #1E1E1E;
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --transition-speed: 0.3s;
    --gradient-primary: linear-gradient(45deg, var(--primary), var(--secondary));
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
  }
  
  .parallax-container {
    position: relative;
    overflow: hidden;
  }
  
  .parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* Common button styles */
  .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--background);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(187, 134, 252, 0.4);
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
  }
  
  /* Common section styles */
  section {
    padding: 6rem 2rem;
    position: relative;
  }
  
  /* Responsive breakpoints */
  @media (max-width: 768px) {
    section {
      padding: 4rem 1rem;
    }
  }