/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* Light base background */
    color: #333;
    line-height: 1.7;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header/Navbar Styling (Consistent) */
  .header {
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.7rem;
    color: #6a11cb;
  }
  
  .logo_icon {
    width: 45px;
    border-radius: 50%;
    margin-right: 0.75rem;
  }
  
  .nav_link {
    color: #444;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  .nav_link:hover {
    color: #fff;
    background-color: #6a11cb;
  }
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  .hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .hero-section .subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
  }
  
  /* General Section Styling */
  section {
    padding: 60px 0;
  }
  section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333; /* Darker heading for sections */
    margin-bottom: 40px;
    position: relative;
  }
  section h2::after { /* Subtle underline for headings */
      content: '';
      display: block;
      width: 70px;
      height: 4px;
      background-color: #6a11cb;
      margin: 10px auto 0;
      border-radius: 2px;
  }
  
  .section-alt {
    background-color: #ffffff; /* White background for alternating sections */
  }
  
  /* Feature Intro Section */
  .feature-intro {
      display: flex;
      align-items: center;
      gap: 40px;
  }
  .feature-intro-text {
      flex: 1.2;
  }
  .feature-intro-text p {
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 15px;
  }
  .feature-intro-visual {
      flex: 0.8;
      text-align: center;
  }
  .feature-intro-visual .placeholder-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  
  
  /* Features List Section */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  .feature-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  .feature-item h3 {
    font-size: 1.5rem;
    color: #6a11cb;
    margin-bottom: 10px;
  }
  .feature-item p {
    font-size: 1rem;
    color: #555;
  }
  /* Add styles for .feature-icon if you implement icons */
  /* .feature-icon { font-size: 2.5rem; color: #6a11cb; margin-bottom: 15px; } */
  
  
  /* Benefits Section */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  .benefit-item {
    background-color: #f8f9fa; /* Slightly off-white for items in a white section */
    padding: 25px;
    border-left: 4px solid #6a11cb; /* Accent border */
    border-radius: 0 8px 8px 0;
  }
  .benefit-item h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 8px;
  }
  .benefit-item p {
    font-size: 0.95rem;
    color: #666;
  }
  
  /* Visual Showcase Section */
  .showcase-subtitle {
      text-align: center;
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
  }
  .showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
  }
  .showcase-item {
    text-align: center;
  }
  .showcase-item .placeholder-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: #e0e0e0; /* Placeholder background */
    border: 1px solid #ccc;
    aspect-ratio: 16 / 9; /* For consistent placeholder size */
    object-fit: cover; /* If you use actual images */
  }
  .showcase-item p {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
  }
  
  /* CTA Section */
  .cta-section .text-center {
      text-align: center;
  }
  .cta-section p {
      font-size: 1.15rem;
      color: #555;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
  }
  .cta-button, .cta-button-secondary {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.9rem 1.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    margin: 0.5rem;
  }
  .cta-button {
    color: #fff;
    background: linear-gradient(to right, #6a11cb, #2575fc);
  }
  .cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.2);
  }
  .cta-button-secondary {
      color: #6a11cb;
      background-color: transparent;
      border: 2px solid #6a11cb;
  }
  .cta-button-secondary:hover {
      background-color: #6a11cb;
      color: #fff;
      transform: translateY(-3px);
  }
  
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .hero-section h1 { font-size: 2.5rem; }
    .hero-section .subtitle { font-size: 1.1rem; }
    section h2 { font-size: 2.2rem; }
  
    .feature-intro {
        flex-direction: column;
        text-align: center;
    }
    .feature-intro-visual {
        margin-top: 30px;
        max-width: 400px; /* Control image size on stacking */
    }
  }
  
  @media (max-width: 768px) {
    .header { padding: 0.75rem 1rem; }
    .logo { font-size: 1.5rem; }
    .logo_icon { width: 35px; }
    .nav_link { font-size: 1rem; padding: 0.4rem 0.8rem; }
  
    .hero-section { padding: 60px 15px; }
    .hero-section h1 { font-size: 2rem; }
    
    section { padding: 40px 0; }
    section h2 { font-size: 1.8rem; margin-bottom: 30px; }
    section h2::after { width: 50px; height: 3px;}
  
    .features-grid, .benefits-grid, .showcase-grid {
      grid-template-columns: 1fr; /* Stack items on mobile */
    }
    .feature-intro-text p { font-size: 1rem;}
  }
  
  @media (max-width: 480px) {
      .hero-section h1 { font-size: 1.8rem; }
      .hero-section .subtitle { font-size: 1rem; }
      section h2 { font-size: 1.6rem; }
  
      .cta-button, .cta-button-secondary {
          font-size: 1rem;
          padding: 0.8rem 1.5rem;
          display: block; /* Stack buttons */
          width: fit-content;
          margin-left: auto;
          margin-right: auto;
      }
  }