
.az-nwfaq-section {
  width: 100%;
  padding: 50px 20px;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

.az-nwfaq-section *,
.az-nwfaq-section *::before,
.az-nwfaq-section *::after {
  box-sizing: border-box;
}

.az-nwfaq-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* Heading */
.az-nwfaq-heading {
  max-width: 900px;
  margin-bottom: 35px;
}

.az-nwfaq-heading span {
  display: inline-block;
  margin-bottom: 12px;
  color: #198da8;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.az-nwfaq-heading h2 {
  margin: 0 0 16px;
  color: #101820;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 800;
}

.az-nwfaq-heading p {
  margin: 0;
  color: #5f6b76;
  font-size: 16px;
  line-height: 1.75;
}

/* FAQ List */
.az-nwfaq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FAQ Item */
.az-nwfaq-item {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 32, 0.08);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.07);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.az-nwfaq-item:hover {
  border-color: rgba(25, 141, 168, 0.25);
  box-shadow: 0 20px 45px rgba(16, 24, 32, 0.11);
}

.az-nwfaq-item[open] {
  background: linear-gradient(135deg, #f3fafc, #ffffff);
}

/* Question */
.az-nwfaq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 58px 22px 24px;
  color: #101820;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.az-nwfaq-item summary::-webkit-details-marker {
  display: none;
}

.az-nwfaq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #198da8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.az-nwfaq-item[open] summary::after {
  content: "−";
  background: #101820;
}

/* Answer */
.az-nwfaq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: #5f6b76;
  font-size: 15px;
  line-height: 1.75;
}

/* Mobile */
@media (max-width: 768px) {
  .az-nwfaq-section {
    padding: 40px 16px;
  }

  .az-nwfaq-heading {
    margin-bottom: 30px;
  }

  .az-nwfaq-item summary {
    padding: 20px 54px 20px 20px;
    font-size: 15px;
  }

  .az-nwfaq-item p {
    padding: 0 20px 22px;
    font-size: 14px;
  }
}
