/* Reset some default styles */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
  }


  
  /* Body styles */
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Container for padding */
  .container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
  }
  
  /* General alignment and spacing */
  .container > * {
    padding: 20px;
    box-sizing: border-box;
  }
  
  /* Header styles */
  header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
  }
  
  header h1 {
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  header h2 {
    font-size: 1em;
    font-weight: 300;
    padding-bottom: 5px; 
    }

  /* Add this to style the "Copy Email Address" link */
.copy-email-link {
  display: block;
  color: white;
  font-size: 0.8em;
  text-align: center;
  margin-top: 10px;
  text-decoration: none;
  cursor: pointer;
  text-decoration: underline;
  margin-bottom: 20px;
}

.copy-email-link:hover {
  text-decoration: underline;
}

  
  header .first-button {
    display: inline-block;
    background: #ffffff;
    color: #0056b3;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s, transform 0.3s;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    margin-bottom: 0px; 
    text-decoration: underline;
  }
  
  header .first-button:hover {
    background: #ffffff;
    transform: translateY(-3px);
  }
  
  /* Hero section */
  .hero img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Hero Button */
  .hero {
    text-align: center;
  }
  
  .hero .hero-button {
    display: inline-block;
    background: #0056b3;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s, transform 0.3s;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
  }
  
  .hero .hero-button:hover {
    background: #0056b3;
    color: #fff;
    transform: translateY(-3px);
  }
  
  /* Section headings */
  section h2 {
    font-size: 1.8em;
    margin: 20px 0 10px;
    color: #0056b3;
    position: relative;
  }
  
  section h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #0056b3;
    position: absolute;
    left: 0;
    bottom: -10px;
  }
  
  /* Card styles */
  .card {
    background: #fff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }
  
  /* Use cases and features styles */
  .use-cases, .features-benefits, .testimonials, .pro-features, .faq, .comparison {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }
  
  /* Section content styles */
  .use-case, .feature, .benefit {
    margin-bottom: 20px;
  }
  
  .use-case p, .feature p, .benefit p {
    font-style: italic;
    color: #555;
  }
  
  /* Adding shadow effect to images within use-case */
  .use-case img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* CTA Button */
  .button {
    display: inline-block;
    background: #0056b3;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 25px;
    transition: background 0.3s, transform 0.3s;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .button:hover {
    background: #004494;
    transform: translateY(-3px);
  }
  
  /* Footer styles */
  footer {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    box-sizing: border-box;
  }
  
  footer a {
    color: #0056b3;
    margin: 0 10px;
    transition: color 0.3s;
  }
  
  footer a:hover {
    color: #fff;
  }
  
  /* General styles for better alignment */
  h1, h2, h3, p {
    padding: 0;
    box-sizing: border-box;
  }
  
  ul {
    list-style-type: disc;
    padding-left: 20px;
    box-sizing: border-box;
  }
  
  li {
    margin-bottom: 10px;
    position: relative;
  }
  
  li::marker {
    content: '•';
    color: black;
    font-size: 1em;
  }
  
  li::before {
    content: '';
    display: inline-block;
    width: 10px;
  }
  
  section {
    margin-bottom: 40px;
  }
  
  /* Centering and beautifying the table */
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  th, td {
    padding: 12px;
    border: 1px solid #ddd;
  }
  
  th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
  }
  
  td {
    background-color: #fff;
    color: #333;
  }
  
  /* Free features section */
  .free-features {
    background: #fff;
    margin: 20px 0;
    padding: 20px;
  }
  
  /* Media query for mobile viewports */
  @media (max-width: 600px) {
    .container {
      width: 100%;
      padding: 10px;
    }

    #plus {
      flex-direction: column;
      align-items: center;
      gap: 4px; /* Adjust this gap as needed */
    }
  
    #plus > span {
      margin: 0;
    }
  }
  
  .circle {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    position: relative;
    margin: 4px;
    display: inline-block;
    vertical-align: middle;
    background: white; /* White background for the circle */
}
.circle.plus:before,
.circle.plus:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0056b3; /* Blue color for the plus sign */
}
.circle.plus:before {
    width: 2px;
    margin: 2px auto;
}
.circle.plus:after {
    margin: auto 2px;
    height: 2px;
}

#plus {
    display: flex;
    align-items: center;
    gap: 4px; /* Adjust this gap as needed */
}

.plus-icon {
    display: inline-block;
}


