@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: aliceblue;
    color: #333;
    font-size: 14px;
}


header.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}


.nav {
    max-width: 1140px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav li {
    display: inline-block;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.nav a:hover {
    background-color: #007BFF;
    color: white;
}

.home-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    color: #333;
}



.home-section h2 {
    margin-top: 30px;
    color: #333;
}

.home-section ul {
    list-style: none;
    padding-left: 0;
}

.home-section ul li {
    margin: 10px 0;
    line-height: 1.6;
}

.home-section a {
    color: #007BFF;
    text-decoration: none;
}

.products-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    color: #333;
}

 h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #007BFF;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 40px;
}

.product-card h2 {
    color: #333;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    margin-bottom: 10px;
}

.product-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-card ul li {
    margin-bottom: 6px;
}

.btn-download {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-download:hover {
    background-color: #0056b3;
}

/*Privacy policy styling code */

.policy-section {
    font-family: Arial, sans-serif;
    margin: 40px auto;
    max-width: 700px;
    padding: 0 20px;
    line-height: 1.6;
    color: #333;
  }



  .policy-preview {
    overflow: hidden;
    max-height: 160px;
    position: relative;
  }

  .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: underline;
  }

  .full-policy {
    display: none;
    margin-top: 20px;
  }

  .contact-info {
    margin-top: 1rem;
  }




