﻿ /* Social icons container */
      .social-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
        margin-top: 10px;
      }
  
      .faq-answer {
        display: none; 
        margin-top: 10px;
        padding-left: 20px;
        background-color: #000000;
        border: 1px solid #ffffff;
        border-radius: 5px;
        color: #ffffff;
      }

      .faq-question {
        cursor: pointer;
        font-weight: bold;
        color: #ffffff;
        text-decoration: none;
        display: block;
        background-color: #000000;
        padding: 10px;
        margin: 10px 0;
        border: 2px solid #ffffff;
        border-radius: 5px;
        transition: background-color 0.3s ease, border-color 0.3s ease;
      }
      .faq-question.active {
        background-color: #ff0000;
        border-color: #ff0000;
        color: white;
      }

      .faq-list {
        list-style-type: none;
        padding: 0;
        background-color: #000000;
        padding: 20px;
        border-radius: 5px;
        margin: 0;
      }

      .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }