.navigation-2 {
  background-color: white;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0px 10px 90px;
  height: 80px;
  border-bottom: solid rgb(220, 213, 213) 1px;
}

.shopping-development-section {
  gap: 2rem;
}

.shopping-development-section img {
  width: 25rem;
}

.mail-plans {
  padding: 40px 90px;
  margin: auto;
  text-align: center;
  background-color: white;
}

.mail-plans h1 {
  font-size: 35px;
  margin-bottom: 10px;
}

.mail-plans .description {
  font-size: 17px;
  margin-bottom: 30px;
  color: #444;
}

.plans {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.plan {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  flex: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.plan.starter {
  background: #fff7e7;
}

.plan.standard {
  background: #ffe8ec;
}

.plan.plus {
  background: #e6f4f1;
}

.plan h2 {
  margin-bottom: 5px;
}

.plan .storage {
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #555;
}

.plan button {
  padding: 15px 20px;
  margin: 10px 0;
  border: 2px solid #000000;
  background: inherit;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.5s;
}

.plan ul {
  text-align: left;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.plan li {
  margin: 10px 0;
  font-size: 17px;
}

.consult {
  width: 39rem;
  border-radius: 23px;
  background-color: #f2f2f2;
  margin: 22px auto;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
}

.consult a {
  text-decoration: underline;
  color: #4285f4;
}

.navigation-2 div {
  border-right: solid 1px black;
  padding-right: 20px;
  font-weight: bold;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.navigation-2 .house-icon {
  font-size: 25px;
}

.navigation-2 ul {
  display: flex;
  gap: 20px;
}

.navigation-2 .active {
  color: var(--primary-color);
  border-bottom: solid var(--primary-color) 1px;
}

.company-details {
  background-color: white;
  display: flex;
  gap: 20px;
  padding: 40px 90px 40px 90px;
}

.company-details .heading-section h1 {
  font-size: 35px;
  width: 35rem;
}

.company-details .heading-section img {
  width: 20rem;
  margin-top: 2rem;
}

.facebook-section {
  padding: 40px 90px;
  background-color: white;
}

.facebook-section .heading-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benefits-section {
  width: 100%;
  padding: 40px 90px;
}

.benefits-section h1 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.benefit {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid #b2dff5;
}

.benefit:last-child {
  border-bottom: 1px solid #b2dff5;
}

.benefit span {
  font-weight: bold;
  color: #0077c2;
  min-width: 30px;
}

.benefit h3 {
  margin: 0;
  font-size: 1.1rem;
}

.benefit p {
  margin: 5px 0 0;
  font-size: 0.95rem;
  color: #333;
}

.facebook-section .icons-section {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  margin-top: 4rem;
}

.facebook-section .icons-section i {
  font-size: 3rem;
}

.facebook-marketing {
  display: flex;
  justify-content: space-between;
  background-color: #1877f2;
  padding: 2rem;
  margin-top: 4rem;
  gap: 4rem;
  color: white;
}

.facebook-marketing .heading-section {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.heading-section h1 {
  font-size: 35px;
}

.company-details .content-section {
  display: flex;
  gap: 50px;
}

.company-details .content-section div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.company-details-2 {
  background-color: #f7f7fc;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 90px 40px 90px;
}

.reasons {
  background-color: #faede9;
  display: flex;
  flex-direction: column;
}

.reasons .heading-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 90px 10px 90px;
}
.reasons .heading-section h1 {
  width: 75rem;
}

.reasons .heading-section p {
}

.faq-header marquee {
  font-size: 4rem;
  font-weight: bolder;
}

.card-container {
  padding: 40px 90px 40px 90px;
  background-color: white;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.card h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.features-section {
  display: flex;
  border-top: solid rgb(220, 213, 213) 1px;
  padding: 0px 90px;
}

.feature img {
  width: 100px;
}

.feature h1 {
  font-size: 18px;
}

.feature p {
  font-size: 14px;
}

.feature {
  border-right: solid rgb(220, 213, 213) 1px;
  padding: 50px 10px 60px 40px;
}

.feature:last-child {
  border-right: none;
}

.feature:first-child {
  padding-left: 0;
}

.how-can-help,
.online-portal-section {
  display: flex;
  align-items: center;
  padding: 80px 90px 80px 90px;
}

.how-can-help .content-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.shopping-development-section .heading-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shopping-development-section {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 80px 90px 80px 90px;
  background-color: #faede9;
}

.call-now-section .heading-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.call-now-section .heading-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

.call-now-section {
  display: flex;
  align-items: center;
  padding: 40px 90px 40px 90px;
  background-color: #003d88;
  color: white;
  background-image: url(https://www.tomsher.com/assets/imgs/tom.jpg);
  background-repeat: no-repeat;
  background-position: right;
}

.call-now-section .heading-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.call-now-section .heading-section button {
  background-color: white;
  border-radius: 10px;
  color: #003d88;
  width: 9rem;
  height: 3.5rem;
  border: none;
  font-weight: 600;
}

.call-now-section .heading-section button:hover {
  background-color: #003d88;
  border-radius: 10px;
  border: solid white 1px;
  color: white;
}

.why-choose-us-section {
  background-color: white;
  padding: 40px 90px 10px 90px;
}

.why-choose-us-section .heading-section {
  display: flex;
  align-items: start;
}
.why-choose-us-section .heading-section h1 {
  width: 75rem;
}

.why-choose-us-section .heading-section p {
  width: 101rem;
}

.why-choose-us-section .items-section {
  display: flex;
  margin-top: 4rem;
}

.why-choose-us-section .items-section .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  border-bottom: solid 1px #d1ecfd;
  padding-bottom: 2rem;
}

.why-choose-us-section .items-section img {
  width: 25rem;
}

.why-choose-us-section .items-section div {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  justify-content: space-between;
}

.why-choose-us-section .items-section .item div {
  color: #003d88;
  font-weight: 400;
  font-size: 25px;
}

.why-choose-us-section .items-section .item h1 {
  font-weight: 400;
  font-size: 25px;
  white-space: nowrap;
}

.why-choose-us-section .items-section .item p {
  color: #999;
  font-weight: 400;
  font-size: 15px;
}

.payment-section {
  background-color: white;
  padding: 30px 90px 30px 90px;
}

.payment-section .heading-section {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-bottom: 2rem;
}

.brand-section {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.brand-section .brand {
  border: solid rgb(220, 213, 213) 1px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-section .brand img {
  width: 5rem;
}

.redesign-section {
  display: flex;
  background-color: white;
  padding: 20px 90px 20px 90px;
  align-items: baseline;
}

.redesign-section .heading-section h1 {
  white-space: nowrap;
}

.redesign-section .items-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 5rem;
}

.redesign-section .items-section .item {
  justify-content: flex-start;
  display: flex;
  flex-direction: row;
  border-bottom: solid rgb(220, 213, 213) 1px;
  padding-bottom: 10px;
  gap: 30px;
  padding-top: 10px;
}

.redesign-section .items-section .item div {

  font-weight: lighter;
}

.redesign-section .items-section .item p:hover {
  color: #003d88;
}

.industry-verticals-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: white;
  padding: 40px 90px 40px 90px;
}

.industry-verticals-section .items-section img {
  width: 50px;
}

.industry-verticals-section .items-section {
  display: grid;
  column-gap: 30px;
  row-gap: 40px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
}

.industry-verticals-section .items-section .item {
  display: flex;
  align-items: start;
  gap: 12px;
  justify-content: center;
}

.industry-verticals-section .items-section .item h1 {
  font-size: 16px;
}

.industry-verticals-section .items-section .item p {
  font-size: 13px;
}

.industry-verticals-section .heading-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.industry-verticals-section .heading-section h1 {
  width: 126rem;
}

.industry-expertise {
  background-color: #e5f1ec;
  padding: 90px;
  display: flex;
  justify-content: space-between;
  font-family: "Segoe UI", sans-serif;
}

.industry-expertise .content {
  max-width: 600px;
  margin-bottom: 40px;
}

.industry-expertise h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.industry-expertise p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
}

.industry-item {
  text-align: center;
}

.industry-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}

.industry-item p {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.digital {
  display: flex;
  align-items: center;
  padding: 140px 90px 140px 90px;
  background-color: #003d88;
  color: white;
  background-image: url(https://www.tomsher.com/assets/imgs/cta1.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.digital .heading-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.digital .heading-section button {
  background-color: white;
  border-radius: 10px;
  color: #003d88;
  width: 9rem;
  height: 3.5rem;
  border: none;
  font-weight: 600;
}

.digital .heading-section button:hover {
  background-color: #003d88;
  border-radius: 10px;
  border: solid white 1px;
  color: white;
}

.digital .heading-section .digital-solution {
  display: flex;
  gap: 2rem;
}

.digital .heading-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

.faq-container {
  background: white;
  max-width: 100%;
  padding: 40px 90px 40px 90px;
  margin: auto;
}

.faq-container h2 {
  font-size: 35px;
  margin-bottom: 2rem;
}

.faq-item {
  border-top: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 0 1rem 0;
  font-size: 1rem;
  color: #444;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg); /* turns "+" into "×" */
}

.how-can-help img,
.online-portal-section img {
  width: 25rem;
}

.plan button:hover{
  background-color: black;
  color: white;
}

@media (max-width: 992px) {
  .facebook-section .icons-section {
    flex-direction: column;
    gap: 2rem;
  }

  .consult{
    width: 100%;
  }

  .plans{
    flex-direction: column;
  } 

  .mail-plans{
   padding: 15px 10px;
  }

  .benefits-section {
    padding: 15px 10px;
  }

  .facebook-marketing {
    flex-direction: column;
  }

  .facebook-section {
    padding: 15px 10px;
  }

  .faq-container h2 {
    font-size: 30px;
    margin-bottom: 2rem;
  }

  .faq-container {
    background: white;
    max-width: 100%;
    padding: 10px 15px 10px 15px;
    margin: auto;
  }

  .digital {
    display: flex;
    padding: 40px 15px 40px 15px;
    background-image: none;
  }

  .digital .heading-section .digital-solution {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .call-now-section .heading-section,
  .digital .heading-section {
    width: 100%;
  }

  .industry-expertise {
    padding: 15px;
    display: flex;
    flex-direction: column;
  }

  .industry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 30px;
    align-items: center;
  }

  .navigation-2 {
    display: none;
  }

  .company-details {
    padding: 0;
    flex-direction: column;
    padding: 35px 15px 35px 15px;
  }

  .company-details .heading-section h1 {
    font-size: 25px;
    width: 100%;
  }

  .company-details .content-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .card-container {
    padding: 15px 10px 15px 10px;
  }

  .card h2 {
    font-size: 24px;
  }

  .card p {
    font-size: 15px;
  }

  .reasons .heading-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 15px 35px 15px;
    gap: 20px;
  }

  .reasons .heading-section h1 {
    width: 100%;
    font-size: 25px;
  }
  .reasons .heading-section p {
    width: 100%;
  }

  .features-section {
    flex-direction: column;
    padding: 10px 15px;
  }

  .feature {
    border-right: none;
    padding: 20px 15px 20px 0px;
  }

  .how-can-help,
  .online-portal-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px 15px 40px 15px;
  }

  .how-can-help img,
  .online-portal-section img {
    width: 18rem;
  }

  .heading-section h1 {
    font-size: 25px;
    width: 100%;
  }

  .shopping-development-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 15px 40px 15px;
    background-color: #faede9;
  }

  .shopping-development-section img {
    width: 18rem;
  }

  .call-now-section {
    display: flex;
    padding: 40px 15px 40px 15px;
    background-image: none;
  }

  .call-now-section .heading-section {
    width: 100%;
  }

  .why-choose-us-section {
    padding: 40px 15px 40px 15px;
  }

  .why-choose-us-section .heading-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .why-choose-us-section .heading-section p {
    width: 100%;
  }

  .why-choose-us-section .items-section {
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
  }

  .why-choose-us-section .heading-section h1 {
    width: 100%;
  }

  .why-choose-us-section .items-section .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-bottom: solid 1px #d1ecfd;
    padding-bottom: 2rem;
    padding-left: 0px;
  }

  .why-choose-us-section .items-section img {
    display: none;
  }

  .payment-section {
    background-color: white;
    padding: 40px 15px 40px 15px;
  }

  .payment-section .heading-section h1 {
    text-align: center;
    font-size: 35px;
  }

  .brand-section {
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .redesign-section {
    flex-direction: column;
    padding: 40px 15px 40px 15px;
    align-items: baseline;
  }

  .redesign-section .items-section {
    padding-left: 0px;
  }

  .redesign-section .heading-section h1 {
    white-space: wrap;
  }

  .industry-verticals-section {
    padding: 40px 15px 40px 15px;
  }

  .industry-verticals-section .heading-section h1 {
    width: 100%;
  }

  .industry-verticals-section .heading-section {
    flex-direction: column;
  }

  .industry-verticals-section .items-section {
    grid-template-columns: 1fr;
  }
}
