/* prime  */
.part1-prime {
  background-color: #232f3e;
  color: white;
  padding: 40px 20px;
  text-align: center;
  /* direction: rtl; */
  display: flex;
  flex-direction: column; 
  align-items: center;    
  gap: 10px;              
}
.part1-prime h1{
  font-size: 38px;
}
.part1-prime h3{
  font-size: 23px;
}
.part1-prime a{
  margin-bottom: 20px;
  color: white;
}
.part1-prime button {
  font-size: 12px;
  background-color: #ffd814;
  border: none;
  padding: 9px 12px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  width: fit-content;   
  position: static;  
}
.part2-prime {
    /* direction: rtl; */
    padding: 30px 5%;
    background-color: white;
    text-align: center;
}
.part2-prime h2 {
  font-size: 40px;
    color: #0066c0;
    margin-bottom: 25px;
}
.up-prime {
  padding: 0 115px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 60px;
}
.down-prime {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px; 
    margin: 0 auto;
}
.up-prime > div, 
.down-prime > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.part2-prime img {
    max-width: 230px;
    margin-bottom: 20px;
}
.part2-prime h3 {
    color: #0066c0;
    margin-bottom: 10px;
}
.part2-prime p {
  font-size: 15px;
    color: #333;
    line-height: 1.6;
}
.part3-prime {
    background-color: #232f3e;
    color: white;
    padding: 15px 20px 0;
    text-align: center;
    /* direction: rtl; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.part3-prime h2 {
    font-size: 2.5rem;
    margin: 0;
}
.radio-box {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.box-radio {
    background-color: rgba(242, 236, 236, 0.914);
    color: black;
    padding: 15px;
    border-radius: 3px;
    width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: 2px solid #007185; 
    transition: 0.3s ;
}
.box-radio:hover {
    border-color: #007185;
}
.box-radio h3 {
    font-size: 1.2rem;
    margin: 10px 0 0;
}
.box-radio h2 {
    font-size: 2rem;
    margin: 0;
}
.box-radio p {
    color: black;
    font-size: 0.9rem;
}
.radio {
    width: 20px;
    height: 20px;
    border: 2px solid #f2f0f0;
    border-radius: 50%;
    position: relative;
}
.box-radio:first-child .radio {
    border-color: #007185;
}
.box-radio:first-child .radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #007185;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    inset-inline-end: 50%;
    transform: translate(-50%, -50%);
}
.part3-prime button {
  margin-top: 7px;
  margin-bottom: 25px;
  font-size: 12px;
  background-color: #ffd814;
  border: none;
  padding: 9px 12px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  width: fit-content;
  position: static;  
}
.faq-section {
    /* direction: rtl; */ 
    max-width: 1100px;
    margin: 50px auto;
    font-family: sans-serif;
    padding: 0 20px;
}
.faq-section h2 {
    color: #0066c0;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
}
.faq-section hr {
    border: 0;
    border-top: 1px solid #cdcdcd;
}
details {
    border-bottom: 1px solid #ddd;
}
summary {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 0;
    list-style: none;
}
summary::-webkit-details-marker {
    display: none;
}
summary::before {
    content: '\2304';
    font-size: 1.5rem;
    margin-inline-end: 10px;
    transition: transform 0.3s;
}
details[open] summary::before {
    transform: rotate(180deg);
}
.content {
    padding: 15px 20px;
    line-height: 1.7;
    color: #333;
    text-align: right;
}
.header-for-phone{
  display: none;
}
.footer-mobile{
  display: none;
}





@media (max-width: 768px) {
  .header-for-phone, .footer-mobile {
        display: block;
  }
  .part2-pr2{
    display: none;
  }
  .up-prime{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    padding: 0;
  }
  .part2-pr h2{
    font-size: 24px;
  }
  .part3-prime .radio-box{
    display: grid;
    grid-template-columns: repeat(1,1fr);
  }
}