/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
  }
  
  /* Utility classes */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background 0.3s, color 0.3s;
    font-weight: 600;
  }
  .btn-primary {
    background: #2b79ff;
    color: #fff;
  }
  .btn-primary:hover {
    background: #1f5bcc;
  }
  .btn-secondary {
    background: #fff;
    color: #2b79ff;
    border: 2px solid #2b79ff;
  }
  .btn-secondary:hover {
    color: #fff;
    background: #2b79ff;
  }
  
  /* Header / Navigation */
  .header {
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2b79ff;
  }
  .navbar {
    display: flex;
    align-items: center;
  }
  .nav-links {
    display: flex;
    list-style: none;
    margin-right: 2rem;
  }
  .nav-links li {
    margin-left: 1.5rem;
  }
  .nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .nav-links a:hover {
    color: #2b79ff;
  }
  .nav-cta {
    margin-right: 2rem;
  }
  .menu-toggle {
    display: none;
    font-size: 1.2rem;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #2b79ff, #74c0fc);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
  }
  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .hero-content h1 span {
    color: #fff; /* accent color if needed */
  }
  .hero-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  /* Features Section */
  .features {
    padding: 3rem 2rem;
    text-align: center;
  }
  .features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  .feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }
  .feature-card:hover {
    transform: translateY(-5px);
  }
  .icon {
    font-size: 2.5rem;
    color: #2b79ff;
    margin-bottom: 1rem;
  }
  .feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
  }
  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  /* About Section */
  .about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 3rem 2rem;
    background: #f1f5ff;
  }
  .about-content {
    flex: 1 1 400px;
    margin-right: 2rem;
    margin-bottom: 1rem;
  }
  .about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .about-content h2 span {
    color: #2b79ff;
  }
  .about-content p {
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .about-image {
    flex: 1 1 300px;
    text-align: center;
  }
  .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
  }
  
  /* Contact Section */
  .contact {
    padding: 3rem 2rem;
    text-align: center;
  }
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .contact p {
    margin-bottom: 2rem;
  }
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.3rem;
    font-size: 0.95rem;
  }
  .contact-form button {
    display: block;
    margin: 1rem auto 0 auto;
  }
  
  /* Footer Section */
  .footer {
    background: #fff;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
  }
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
  }
  .footer-content p {
    margin-bottom: 1rem;
  }
  .social-links a {
    color: #2b79ff;
    font-size: 1.2rem;
    margin-left: 1rem;
  }
  .social-links a:hover {
    color: #1f5bcc;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 70px;
      right: 0;
      background: #fff;
      width: 60%;
      max-width: 300px;
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem 2rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
    }
    .nav-links li {
      margin: 1rem 0;
    }
    .menu-toggle {
      display: block;
    }
    .nav-links.active {
      transform: translateX(0);
    }
    .nav-cta {
      display: none;
    }
  
    .about {
      flex-direction: column;
    }
    .about-content, .about-image {
      margin: 0;
      width: 100%;
      text-align: center;
    }
  }
  