*
{
    transition:all 0.3s ease-in-out;
    box-sizing:border-box;
    margin:0px;
    padding:0px;
}
.single-post-section
{
    display:flex;
    padding:50px 100px;
    gap:35px;
    margin-top:100px !important;
}
.single-post-section> .left-information-section
{
    width:70%;
    box-shadow:0px 0px 5px rgba(0,0,0,0.5);
    padding:20px;
    border-radius:20px;
}
.single-post-section> .left-information-section img
{
    width:100%;
    border-radius:15px;
}
.single-post-section> .left-information-section .information-items h1
{
    font-size:35px;
    margin:20px 0px;
    font-weight:600;
}
.single-post-section> .left-information-section .information-items p
{
    font-size:18px;
}
.date-information
{
    font-size:20px;
    margin-bottom:25px;
    color:#000;
}
.date-information>span
{
    color:#ff6b00;
}

#information-description
{
    display:flex;
    flex-direction:column;
}
#information-description>h2
{
    margin:20px 0px;
    font-size:27px;
}
#information-description>h3
{
    font-size:25px;
    margin:15px 0px;
    font-weight:600;
}
#information-description>h4
{
    font-size:23px;
}
#information-description>h5
{
    font-size:20px;
}
#information-description>p
{
    font-size:18px;
    line-height:27px;
    color:#000;
    margin:10px 0px;
}
#information-description>ul
{
    color:#000;
    font-size:15px;
    margin-left:50px;
} 
#information-description>ul li
{
    color:#000;
    list-style:disc;
}
#information-description> img
{
    width:100%;
}

#information-description>p a
{
     color:#ff6b00;
     font-weight:600;

}
table
{
   color:#000;
}
thead
{
    background:#ff740c;
    color:#fff;
}
thead tr th
{
    text-align:center !important;
}

table tr td
{
   border: 1px solid #ff740c;
   padding:10px 15px;
}





/* ================soingle-post-section-right-section==================== */

.single-post-section> .right-section
{
    width:30%;
    padding:25px;
    position:relative;
    padding-top:35px;
    box-shadow:0px 0px 5px rgba(0,0,0,0.5);
    border-radius:15px;
}
.single-post-section> .right-section .blogs-items
{
    display:flex;
    flex-direction:column;
    gap:15px;
    position:sticky;
    left:0px;
    top:150px;
}
.single-post-section> .right-section .blogs-items h2
{
    font-size:30px;
    color:#ff6b00;
}
.single-post-section> .right-section .blogs-items a
{
    text-decoration:none;
    color:#000;
    font-size:18px;
    margin-bottom:5px;
}
.single-post-section> .right-section .blogs-items a:hover
{
    color:#ff6b00;
}


/* ==============faq-section============ */

.faq-container
{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:20px;
}
    .faq-item {
      margin-bottom: 10px;
      border-radius: 5px;
    }
    .faq-question
    {
      padding:10px 15px;
      font-size:18px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color:#000;
      border:3px solid #ff6b00;
      border-radius:15px;
      font-weight:600;
    }
    
      .faq-question:hover
      {
        background:#ff6b00;
        color:#fff;
      }
      .faq-question:hover .faq-icon
      {
        color:#fff;
      }
 
    .faq-icon {
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }
    .faq-icon.active {
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background: #fff;
      transition: max-height 0.3s ease, padding 0.3s ease;
      font-size:16px;
      line-height:30px;
    }
    .faq-answer.active {
      max-height: 200px;
      padding: 15px;
      color:#000;
    }





    /* ====================media-screen=============== */
  
@media only screen and (max-width: 600px) {
  .single-post-section
  {
    flex-direction:column;
    gap:20px;
    padding:20px;
  }
  .single-post-section > .left-information-section
  {
    width:100%;
  }
  .single-post-section > .right-section
  {
    width:100%;
  }
    .single-post-section>div
    {
        width:100%;
    }
    h1
    {
        font-size:30px !important;
    }
    h2
    {
        font-size:25px !important;
    }
    .date-information
    {
        font-size:18px;
    }

    #information-description>ul
{
    margin-left:30px !important;
} 
}
