* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #0A2A22;
      background: #fff;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 10%;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      width: 40px;
      margin-right: 10px;
    }

    nav a {
      margin: 0 15px;
      text-decoration: none;
      color: #0A2A22;
      font-weight: 500;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-top: 40px;
      padding: 0 10%;
    }

    .content {
      flex: 1 1 400px;
    }

    .content h1 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .price {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .note {
      font-size: 0.9rem;
      color: #777;
      margin-bottom: 20px;
    }

    .highlight {
      font-weight: 600;
      margin-bottom: 20px;
      display: block;
    }

    ul.features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      list-style: none;
      gap: 10px;
      margin-bottom: 30px;
      padding-left: 0;
    }

    ul.features li {
      font-size: 0.95rem;
      color: #0A2A22;
    }

    .add-to-cart {
      background-color: #003F35;
      color: white;
      padding: 15px 30px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .add-to-cart:hover {
      background-color: #025C48;
    }

    .shipping {
      display: flex;
      align-items: center;
      margin-top: 20px;
      font-size: 0.9rem;
      color: #0A2A22;
    }

    .shipping img {
      width: 20px;
      margin-right: 10px;
    }

    .image-section {
      flex: 1 1 400px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      transition: transform 0.5s ease-in-out;
    }

    .image-section img {
      max-width: 100%;
      height: auto;
      transition: transform 0.5s ease-in-out;
    }

    .image-section:hover img {
      transform: scale(1.05);
    }

    .security-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-top: 80px;
      gap: 40px;
      padding: 0 30px;
    }

    .security-text {
      flex: 1 1 400px;
      max-width: 500px;
      margin-top: 50px;
    }

    .security-text h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #0A2A22;
    }

    .security-text p {
      font-size: 1rem;
      color: #3A5750;
      line-height: 1.6;
    }

    .security-image {
      flex: 1 1 500px;
      display: flex;
      justify-content: center;
    }

    .security-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .features-section {
      width: 100%;
      margin-top: 80px;
      /* text-align: center; */
    }

    .features-section h2 {
      font-size: 2.8rem;
      margin-bottom: 40px;
      text-align: center;
    }

    .features-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }

    .feature {
      max-width: 60%;
      height: 550px;
      /* text-align: center; */
    }

    .feature img {
      width: 100%;
      height: 100%;
      margin-bottom: 20px;
    }

    .feature h3 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #5c5c5c;
    }

    .feature p {
      font-size: 0.95rem;
      color: #666;
    }

    .awards-section {
      margin-top: 15%;
      text-align: center;
    }

    .awards-section h2 {
      font-size: 2.2rem;
      margin-bottom: 40px;
    }

    .awards-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
    }

    .awards-logos img {
      max-width: 400px;
      height: auto;
    }

    .app-section {
      margin-top: 80px;
      text-align: center;
    }

    .app-section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .app-section img {
      max-width: 80%;
      height: auto;
    }

    /* .security-measures {
      margin-top: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: floralwhite;
    }
    .sec-measures-img{
        width: 65%;
        height: 500px;
        display: flex;
    }
    .sec-measures-img img{
        width: 100%;
        height: 100%;
    }
    .sec-measures-img .left{
        width: 30%;
        height: 500px;
    }
    .sec-measures-img .left .a{
        height: 50%;
        width: 100%;
    }
    .sec-measures-img .left .b{
        height: 50%;
        width: 100%;
    }
    .sec-measures-img .right{
        width: 80%;
    }
    .security-measures .left img {
      max-width: 100%;
      height: auto;
    } */

    .trading-section, .verify-section{
        margin-top: 30px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 30px;
    }
    .verify-section h2{
        font-size: 2.2rem;
        text-align: center;
    }
    .verify-section img{
        width: 45%;
    }
    img{
        width: 100%;
    }

      .hackproof-section {
        width: 100%;
      margin-top: 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #013738;
      color: white;
      padding: 40px 20px;
    }

    .hackproof-section h2 {
      font-size: 2rem;
      margin-bottom: 40px;
    }

    .hackproof-img{
        display: flex;
    }
    .hackproof-section img {
      max-width: 100%;
      height: auto;
    }
    .reviews-section {
      margin-top: 80px;
      text-align: center;
    }

    .reviews-section h2 {
      font-size: 1.8rem;
      margin-bottom: 40px;
    }

    .review {
      max-width: 700px;
      margin: 0 auto 30px;
      text-align: left;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 10px;
    }

    .review strong {
      color: #003F35;
    }

    .review p {
      margin-top: 10px;
      font-size: 0.95rem;
      color: #444;
    }

    body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #0d3c3c;
}

.contact-section {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.contact-section h5 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  color: #0d3c3c;
  margin-bottom: 10px;
}

.contact-section h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.row input {
  flex: 1;
  min-width: 48%;
}

input,
textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
}

button {
  padding: 12px;
  border: 1px solid #0d3c3c;
  background-color: white;
  color: #0d3c3c;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0d3c3c;
  color: white;
}
.footer {
  background-color: #003333;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  text-align: center;
}

.footer-top p {
  max-width: 1000px;
  margin: 0 auto 30px auto;
  font-size: 14px;
  line-height: 1.6;
  color: #c8dede;
}

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 80px;
}

.footer-links {
  display: flex;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
}

.footer-links h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #c8dede;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  font-size: 13px;
  color: #ccc;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-bottom .legal {
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.6;
}

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        text-align: center;
      }

      ul.features {
        grid-template-columns: 1fr;
      }
    }