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

h1,
h2,
li,
p {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 400;
  font-style: normal;
}

small,
span {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  direction: rtl;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Section */

header {
  position: relative;
  padding: 50px 0;
  text-align: center;
  display: flex;
  align-items: center;
}

.main-title {
  font-family: 'Itim', cursive;
  font-size: 48px;
  margin-bottom: 30px;
}

.info {
  padding: 0 70px 0 70px;
}

.price-circle {
  width: 150px;
  height: 150px;
  background: rgba(255, 245, 240, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50px;
}

.price-text {
  font-weight: bold;
  line-height: 1.3;
}

.price-amount {
  font-size: 28px;
  display: block;
  margin-top: 10px;
}

.price-circle-small {
  display: none;
}

.price-text-small {
  display: none;
}

.price-amount-small {
  display: none;
}

.main-description {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(50, 65, 88, 1);
  font-size: 24px;
  line-height: 1.5;
}

/* Product Image Section */

.product-image {
  text-align: center;
  margin: 50px 0;
  width: 470px;
}

.phone-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.phone-image-2 {
  display: none;
}

/* How it Works Section */

.how-it-works {
  background-color: rgba(217, 217, 217, 0.5);
  padding: 20px 50px 50px 50px;
  border-radius: 10px;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.steps {
  margin-bottom: 40px;
}

.step {
  padding: 20px;
}

.step h3 {
  margin-bottom: 15px;
  color: #324158;
}

.delivery-info {
  padding: 20px;
}

.delivery-info h3 {
  margin-bottom: 15px;
  color: #324158;
}

.delivery-info ul {
  list-style-type: none;
  margin-bottom: 15px;
}

.delivery-info li {
  margin-bottom: 8px;
}

/* Terms Section */

.terms {
  background-color: rgba(255, 245, 240, 1);
  padding: 50px;
  border-radius: 10px;
  margin: 30px 0;
}

.terms h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.terms ul {
  list-style-type: none;
  max-width: 800px;
  margin: 0 auto;
}

.terms li {
  margin-bottom: 20px;
}

/* Footer Section */

.simple-footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
  border-top: 1px solid #eaeaea;
  background-color: #324158;
}

.copyright {
  font-size: 14px;
  color: #ffffff;
}

/* Responsive Adjustments */

@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .info {
    padding: 0;
  }

  .phone-image {
    display: none;
  }

  .phone-image-2 {
    display: block;
    width: 210px;
    height: 210px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
  }

  .main-title {
    font-size: 36px;
  }

  .main-description {
    font-size: 18px;
  }

  .price-text {
    display: none;
  }

  .price-circle {
    position: relative;
    margin: 20px auto;
    left: 0;
    box-shadow: none;
    top: -17px;
  }

  .price-text-small {
    font-weight: bold;
    line-height: 1.3;
    display: block;
  }

  .price-amount-small {
    font-size: 13px;
    display: block;
    margin-top: 10px;
  }

  .price-circle-small {
    width: 90px;
    height: 70px;
    background: rgba(255, 245, 240, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 10px;
  }

  .how-it-works,
  .terms {
    padding: 30px 20px;
  }

  .how-it-works h2 {
    font-size: 18px;
  }

  .product-image {
    display: none;
  }
}
