.paragraph{
  background-color: #FF9500;
  text-align: center;
  color: white;
  font-size: 16px;
  width: 24px;
  height: 24px;
  font-weight: 400;
  border-radius: 6px;
}
 /* Общие стили для всех блоков */
 .offer_rules{
    margin: 25px 0 64px;
 }
 .rules_text{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 24px;
    width: 100%;
    height: auto;
    padding: 32px 64px;
    background-color: #FF9500;
    color: #ffffff;
    margin-bottom: 37px;
    border-radius: 8px;
 }
 .rules_text img{
    width: 32px;
    height: 32px;
 }

 .rules_text h1{
    font-size:32px ;
    font-weight: 600;
 }

 .chat-rules {
    width: 100%;
    height: auto;
    background-color: rgba(35, 30, 22, 0.2); 
    border-radius: 8px;
    color: white; 
    padding: 32px 64px;
    position: relative;
    cursor: pointer;
    margin-bottom: 37px;
  }

  .chat-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .chat-rules p {
    margin: 0;
    font-size: 14px;
  }
  .rules-content-osn{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
  }
  .rules-content-osn img{
    width: 25px;
    height: 25px;
  }

  .rules-content-osn h2{
    font-size: 20px;
    font-weight: 600;
  }


  .arrow {
    top:0;
    right: 10px;
    transform: rotate(-135deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid gray;
    border-left: 2px solid gray;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .chat-rules.expanded {
    transition: transform 0.3s ease;
    /* height: 445px; */
  }

  .chat-rules.expanded .arrow {
     transform: rotate(45deg);
    
  }

  .extra-content {
    display: none;
    margin-top: 10px;
  }
  .extra-content-text{
    display: flex;
    justify-content: start;
    gap: 30px;
    margin-top: 12px;
  }
  .content-heading{
    font-weight: normal;
    font-size: 15px;
    color: #FF9500;
  }
  .content-text{
    display: flex;
    font-weight: normal;
    color: #ffffff;
    font-size: 16px;
  }
  .content-text a{
    text-decoration: underline;
    color: #FF9500;
  }

  .chat-rules.expanded .extra-content {
    display: block;
  }
  .text-adaptiv{
    display: none;
  }

  @media(max-width:768px){
    .chat-rules {
      margin-bottom: 13px;
      padding: 32px 29px;
    }
    .rules-content-osn h2 {
      font-size: 16px;
    }
    .offer_rules {
      margin: 54px 0px 0px;
    }
    .logo_footer_adaptiv{
      padding: 54px 0px 0px;
    }
    .rules_text {
      margin-bottom: 13px;
    }
  }
  @media(max-width:460px){
    .rules_text{
      background: #0E0D0D;
      justify-content: center;
      padding: 0px;
      margin-bottom: 57px;
    }
    .rules_text img{
      display: none;
    }
    .rules_text-title{
      display: none;
    }
    .text-adaptiv{
      display: block;
    }
  }