/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #f8f9fa;
  }
  
  .logo img {
    width: 120px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #007BFF;
    font-size: 1rem;
    padding: 5px 10px;
    transition: background-color 0.3s;
  }
  
  nav ul li a.active, 
  nav ul li a:hover {
    background-color: #6fc5e7;
    border-radius: 5px;
  }

.faq-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 40px 20px;
}

h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: bold;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.faq-question {
    width: 100%;
    background: #007BFF;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px;
    text-align: left;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #0056b3;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-answer {
    padding: 15px;
    display: none;
    background: #f1f1f1;
    text-align: left;
    font-size: 1rem;
    color: #555;
}

.faq-answer.active {
    display: block;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer {
        font-size: 0.95rem;
    }
}
