body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #0e0d0d;
    margin: 0;
    padding: 0;
}

.faq {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.faq-header p {
    font-size: 1rem;
    color: #0f0f0f;
}

.accordion {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #070707;
    cursor: pointer;
    padding: 20px;
    position: relative;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '›';
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
    font-size: 1rem;
    color: #555;
}

.faq-answer.open {
    max-height: 500px; /* Adjust as needed */
    padding: 20px;
}

/* ===== Footer ===== */
footer{
  background:#000;         
  color:#fff;
  width:100%;
  margin-top:40px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

footer .containe{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

/* --- top area --- */
.footer-top{
  display:grid;
  grid-template-columns: 320px 1fr;  
  gap:48px;
  padding:56px 0 28px;
  align-items:start;
}

/* brand/info */
.footer-info img{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
  display:block;
  margin:0 0 12px;
}
.footer-info p{
  margin:0 0 16px;
  color:#cbd5e1;                       
  max-width:28ch;
}
.footer-info div a{
  display:inline-block;
  margin-right:16px;
  font-size:18px;
  color:#e5e7eb;                        
  text-decoration:none;
  transition:color .2s ease;
}
.footer-info div a:hover{ color:#ffffff; }

/* link columns */
.footer-links{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:24px 48px;
}

.footer-column h3{
  margin:0 0 14px;
  font-size:18px;
  font-weight:800;
  color:#ffffff;
}

.footer-column ul{ margin:0; padding:0; list-style:none; }
.footer-column li{ margin:10px 0; }

.footer-column a{
  color:#f7f9fc;                       
  text-decoration:none;
  transition:color .2s ease;
}
.footer-column a:hover{ 
  color:#b91c1c;                          
  font-weight:700;
}

/* --- bottom bar --- */
.footer-bottom{
  border-top:1px solid #f3f3f8;           
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 0 26px;
}
.footer-bottom p{
  margin:0;
  color:#f0f1f3;
  font-size:14px;
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .footer-top{
    grid-template-columns:1fr;
    gap:28px;
  }
  .footer-links{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 560px){
  .footer-links{
    grid-template-columns:1fr;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
}

