/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Navbar */
  .navbar {
    background-color: #2a2a2a;
    color: white;
    padding: 15px 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    font-size: 2.5em;
    color: white;
  }
  
  .auth-info {
    display: flex;
    align-items: center;
  }
  
  .cta-button {
    background-color: #ff5c8d;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    text-transform: uppercase;
    cursor: pointer;
    margin-left: 20px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e14f7a;
  }
  
  .user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  #user-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
  }
  
  /* Features Section */
  .features {
    background-color: #fff;
    padding: 50px 0;
  }
  
  .features .container {
    width: 80%;
    margin: 0 auto;
  }
  
  .features .section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
  }
  
  .feature-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  
  .feature-item {
    text-align: center;
    flex: 1;
  }
  
  .feature-icon {
    max-width: 120px;
    margin-bottom: 20px;
  }
  
  .feature-item h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
  }
  
  .feature-item p {
    font-size: 1.1em;
    color: #555;
  }
  
  /* Pricing Section */
  .pricing {
    background-color: #f1f1f1;
    padding: 50px 0;
  }
  
  .pricing .container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  
  .pricing .section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
  }
  
  .pricing-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .pricing-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 45%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
  }
  
  .pricing-card h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
  }
  
  .pricing-card .price {
    font-size: 2.5em;
    color: #ff5c8d;
    margin-bottom: 15px;
  }
  
  .pricing-card .description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
  }
  
  .pricing-card.featured {
    background-color: #fff7f7;
    border: 2px solid #ff5c8d;
  }
  
  .note {
    font-size: 1.1em;
    color: #777;
    margin-top: 20px;
  }
  
  /* Footer */
  .footer {
    background-color: #2a2a2a;
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  
  .footer .social-links {
    list-style-type: none;
    margin-top: 10px;
  }
  
  .footer .social-links li {
    display: inline-block;
    margin: 0 10px;
  }
  
  .footer .social-links a {
    color: white;
    font-size: 1.2em;
    transition: color 0.3s ease;
  }
  
  .footer .social-links a:hover {
    color: #ff5c8d;
  }
  
#sub-info {
  color: green;
  border: 2px solid green;
  font-weight: bold;
}

#chrome_extension {
  background-color: #f7f7f7;
  padding: 50px 0;
  text-align: center;
}

#producthunt {
  background-color: #f7f7f7;
  padding: 50px 0;
  text-align: center;
}

#chrome_extension .container {
  width: 80%;
  margin: 0 auto;
}

#chrome_extension .section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
}

#chrome_extension p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

#chrome_extension .cta-button {
  background-color: #ff5c8d;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#chrome_extension .cta-button:hover {
  background-color: #ff99b3;
}

/* How To Section */
#howto {
  background-color: #f7f7f7;
  padding: 50px 0;
  text-align: center;
}

#howto .container {
  width: 80%;
  margin: 0 auto;
}

#howto .section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
}

#howto p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

#howto a {
  color: #ff5c8d;
  text-decoration: none;
}

#howto a:hover {
  text-decoration: underline;
}