/* hero section styling */

.hero {
  width: 100%;
  height: auto;
  padding: 200px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero .left-hero {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 57%;
}
.hero .left-hero .para-hero {
  margin-top: 10px;
  font-family: "Montserrat", serif;
  line-height: 22px;
  font-size: 1rem;
  color: var(--gray);
}
.hero .left-hero h1 {
  font-size: 2.6rem;
  line-height: 58px;
}
.hero .left-hero .buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 20px;
}
.hero .right-hero {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border: 1px solid grey;
  transform: rotate(-2deg);
}
.hero .right-hero .row {
  display: flex;
  width: 100%;
  height: 47%;
}
.hero .right-hero .row:nth-child(1) img {
  width: 100%;
  height: 100%;
}
.hero .right-hero .row:nth-child(2) {
  gap: 1rem;
}
.hero .right-hero .row:nth-child(2) img {
  width: 47%;
  height: 100%;
}

/* Values section styling */
.values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  width: 100%;
  padding: 60px 80px;
}
.left-value {
  width: 35%;
  background-color: var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 20px;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border: 1px solid grey;
  transform: rotate(2deg);
}
.left-value .row:nth-child(1) img {
  width: 45%;
  height: 45%;
}
.left-value .row:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.left-value .row:nth-child(2) img {
  width: 100%;
  height: 100%;
}
.right-value {
  width: 60%;
  display: flex;
  flex-direction: column;
  padding-left: 170px;
}
.right-value ol {
  position: relative;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.right-value ol li {
  font-size: 1rem;
  font-family: "montserrat", serif;
}
.right-value h1 {
  margin-bottom: 10px;
  font-size: 2.3rem;
}
.right-value .themed{
  margin-top: 20px;
}
/* working section styling */
.working{
  width: 100%;
  padding: 100px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.working .left-working{
  width: 45%;
}
.working .left-working h1{
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.working .right-working{
  width: 50%;
}
.working .left-working ol{
  position: relative;
  left: 19px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.working .left-working ol li{
  font-size: 1rem;
  font-family: "montserrat", serif;
}
.working .left-working .buttons{
  margin-top: 20px;
  gap: 1rem;
  display: flex;
}
.working .right-working img{
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.working .right-working{
  border-radius: 30px;
  padding: 20px;
  background-color: var(--light-gray);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border: 1px solid grey;
  transform: rotate(-2deg);
}
/* plans section styling */
.plans{
  width: 100%;
  padding: 100px 80px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2.6rem;
}
.plans h1{
  font-size: 2.3rem;
}
.plan-container{
  display: flex;
  gap: 4rem;
}
.plans .plan-container .plan{
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  border: 1px solid black;
  border-radius: 12px;
  position: relative;
}
.plans .plan-container .plan h2{
  margin-bottom: 5px;
}
.plans .plan-container .plan .price{
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.plans .plan-container .plan .price p{
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray);
}
.plans .plan-container .plan .price .USD{
  margin-left: 3px;
  font-family: 'raleway',sans-serif;
  font-weight: 500;
}
.plans .plan-container .plan .price h2{
  font-size: 4.5rem;
  font-family: 'montserrat',sans-serif;
}
.plans .plan-container .plan .plan-description{
  margin-bottom: 11px;
  position: relative;
  bottom: 5px;
  font-family: 'montserrat',sans-serif;
  font-size: 1.1rem;
}
.plans .plan-container .plan .dollar{
  margin-bottom: 32px;
  font-size: 2rem !important;
  font-family: 'raleway',sans-serif;
}
.plans .plan-container .plan .features{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.plans .plan-container .plan .features .feature{
  display: flex;
  gap: 1rem;
  align-items: center;

}
.plans .plan-container .plan .features .feature img{
  width: 16px;
  height: 17px;
}
.plans .plan-container .plan .themed{
  margin-top: 17px;
}
.plans .plan-container .plan .plan-name{
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.plans .plan-container .plan .plan-name p{
  font-size: 0.7rem;
  border-radius: 3px;
  padding: 1px 2px;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  position: relative;
  bottom: 2px;
}
/* faq section styling */
.faq {
  width: 100%;
  padding: 70px 80px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq h1{
  font-size: 2.3rem;
}
.faq .general-faq .question-container {
  border-bottom: 1px solid black;
}
.faq .general-faq .question-container .question {
  padding: 10px 5px 1px 5px;
  cursor: pointer;
}
.faq .general-faq .question-container:nth-child(7){
  border: none !important;
}
.faq .general-faq .question-container .question h3{
  font-size: 1.1rem;
  font-weight: 600;
}
.faq .general-faq .question-container .answer p{
  font-size: 1rem;
  color: var(--gray);
  font-family: 'montserrat',sans-serif;
}
.faq .general-faq .question-container .answer {
  width: 100%;
  padding: 3px 5px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.4s ease-in-out, opacity 0.5s ease-in-out, padding 0.4s ease-in-out;
}
.faq .general-faq .question-container.active .answer {
  height: auto;
  opacity: 1;
  padding: 1px 5px 10px 5px;
}