:root {
    --primary-color: #4D8DFF;
    --primary-dark: #3B6FCC;
    --primary-light: #7EABFF;
    --text-color: #333333;
    --text-light: #666666;
    --background: #FFFFFF;
    --background-alt: #F8F9FA;
    
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --container-width: 1200px;
    --header-height: 80px;
  }
  
  /* Reset & Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
  }
  
  .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header */
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  
    .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: var(--header-height);
    }
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
  
    .logo-icon {
      font-size: 32px;
    }
  }
  
  .main-nav {
    ul {
      display: flex;
      gap: 30px;
      list-style: none;
    }
  
    a {
      color: var(--text-color);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
  
      &:hover {
        color: var(--primary-color);
      }
    }
  
    .nav-button {
      background: var(--primary-color);
      color: white;
      padding: 10px 20px;
      border-radius: 6px;
      transition: background-color 0.3s ease;
  
      &:hover {
        background: var(--primary-dark);
      }
    }
  }
  
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    padding: calc(var(--header-height) + 60px) 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
  
    .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
  }
  
  .hero-content {
    h1 {
      font-family: var(--font-heading);
      font-size: 48px;
      line-height: 1.2;
      margin-bottom: 20px;
    }
  
    .hero-subtitle {
      font-size: 20px;
      opacity: 0.9;
      margin-bottom: 30px;
    }
  }
  
  .cta-buttons {
    display: flex;
    gap: 20px;
  }
  
  .button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  
    &.primary {
      background: white;
      color: var(--primary-color);
  
      &:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }
    }
  
    &.secondary {
      border: 2px solid white;
      color: white;
  
      &:hover {
        background: white;
        color: var(--primary-color);
      }
    }
  }
  
  .phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  
    img {
      width: 100%;
      height: auto;
      display: block;
    }
  }
  
  /* Features Section */
  .features {
    padding: 100px 0;
    background: var(--background);
    text-align: center;
  
    h2 {
      font-family: var(--font-heading);
      font-size: 36px;
      margin-bottom: 20px;
      color: var(--primary-color);
    }
  
    .section-subtitle {
      font-size: 18px;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto 60px;
    }
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .feature-card {
    background: var(--background-alt);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
  
    &:hover {
      transform: translateY(-5px);
    }
  
    .feature-icon {
      font-size: 40px;
      margin-bottom: 20px;
    }
  
    h3 {
      font-family: var(--font-heading);
      font-size: 20px;
      margin-bottom: 15px;
      color: var(--primary-color);
    }
  
    p {
      color: var(--text-light);
    }
  }
  
  /* Verses Section */
  .verses {
    padding: 100px 0;
    background: var(--background-alt);
  
    h2 {
      text-align: center;
      font-family: var(--font-heading);
      font-size: 36px;
      margin-bottom: 60px;
      color: var(--primary-color);
    }
  }
  
  .verses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .verse-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  
    blockquote {
      font-family: var(--font-heading);
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 20px;
      font-style: italic;
    }
  
    cite {
      display: block;
      color: var(--primary-color);
      font-style: normal;
      font-weight: 600;
    }
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
  
    h2 {
      text-align: center;
      font-family: var(--font-heading);
      font-size: 36px;
      margin-bottom: 60px;
    }
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    color: var(--text-color);
  
    .testimonial-content {
      padding: 30px;
  
      p {
        font-size: 16px;
        margin-bottom: 20px;
      }
    }
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  
    img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }
  
    h4 {
      font-size: 16px;
      margin-bottom: 5px;
    }
  
    span {
      font-size: 14px;
      color: var(--text-light);
    }
  }
  
  /* Contact Section */
  .contact {
    padding: 100px 0;
    background: var(--background-alt);
  
    h2 {
      text-align: center;
      font-family: var(--font-heading);
      font-size: 36px;
      margin-bottom: 60px;
      color: var(--primary-color);
    }
  }
  
  .contact-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 20px;
  
    label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }
  
    input,
    textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-family: var(--font-body);
  
      &:focus {
        outline: none;
        border-color: var(--primary-color);
      }
    }
  }
  
  /* Footer */
  .footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 30px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    margin-bottom: 40px;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  }
  
  .footer-column {
    h4 {
      font-size: 18px;
      margin-bottom: 20px;
    }
  
    ul {
      list-style: none;
    }
  
    li {
      margin-bottom: 10px;
    }
  
    a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: color 0.3s ease;
  
      &:hover {
        color: white;
      }
    }
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.8;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .mobile-menu-toggle {
      display: block;
    }
  
    .main-nav {
      display: none;
      position: absolute;
      top: var(--header-height);
      left: 0;
      width: 100%;
      background: white;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  
      &.active {
        display: block;
      }
  
      ul {
        flex-direction: column;
        gap: 15px;
      }
    }
  
    .hero .container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .cta-buttons {
      justify-content: center;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  /* Adding legal pages specific styles */
.legal-content {
    padding: calc(var(--header-height) + 40px) 0 60px;
    
    h1 {
      font-family: var(--font-heading);
      font-size: 36px;
      color: var(--primary-color);
      margin-bottom: 30px;
      text-align: center;
    }
    
    .legal-section {
      background: white;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      
      .last-updated {
        color: var(--text-light);
        font-style: italic;
        margin-bottom: 30px;
      }
      
      section {
        margin-bottom: 40px;
        
        h2 {
          font-family: var(--font-heading);
          font-size: 24px;
          color: var(--primary-color);
          margin-bottom: 20px;
        }
        
        p {
          margin-bottom: 15px;
          line-height: 1.6;
        }
        
        ul {
          list-style: disc;
          margin-left: 20px;
          margin-bottom: 15px;
          
          li {
            margin-bottom: 10px;
            line-height: 1.5;
          }
        }
      }
    }
  }
  
  /* Update existing styles to include legal pages navigation */
  .main-nav {
    ul {
      li {
        a {
          &.legal-link {
            color: var(--text-light);
            font-size: 14px;
            
            &:hover {
              color: var(--primary-color);
            }
          }
        }
      }
    }
  }