/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ================= BASE ================= */
body {
  font-family: 'Inter', Arial, sans-serif;
  color: #292929;
  background: #ffffff;
  line-height: 1.7;
}



/* ================= PRODUCT HERO ================= */

.product-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 140px;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(14, 58, 92, 0.92) 0%,
    rgba(14, 58, 92, 0.75) 45%,
    rgba(14, 58, 92, 0.35) 100%
  );
}

.product-hero-inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
  color: #ffffff;
}

.product-hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9fd4ef;
  margin-bottom: 10px;
}

.product-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.product-hero .breadcrumb {
  font-size: 14px;
  color: #cfe6f2;
  margin-bottom: 22px;
}

.product-hero .breadcrumb a {
  color: #cfe6f2;
  text-decoration: none;
}

.product-hero .breadcrumb a:hover {
  text-decoration: underline;
}

.product-hero-text {
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  color: #e3f0f8;
  margin-bottom: 28px;
}

.product-hero-btn {
  display: inline-block;
  background: #ffffff;
  color: #0E3A5C;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
}

.product-hero-btn:hover {
  background: #e6eef7;
}

@media (max-width: 768px) {
  .product-hero-title { font-size: 34px; }
  .product-hero { min-height: auto; padding: 30px 0; }
}



/* ================= MATERIAL & STRUCTURE ================= */

.content-section {
  padding: 110px 20px;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f6fbfe 50%,
    #ffffff 100%
  );
}


.section-divider {
  width: 150px;
  height: 3px;
  background: #20A0D2;
  margin: 1px auto;
  border-radius: 2px;
}



.content-split {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.content-text {
  text-align: left;
}


/* TITLE */
.content-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 26px;
  color: #434545;
}

/* TEXT */
.content-text p {
  text-align: left;
  max-width: 600px;
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.65;
}

/* ================= LAYER DIAGRAM ================= */
.layer-diagram {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.layer {
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;

  opacity: 0;
  transform: translateY(24px);
}

.layer.is-visible {
  animation: fadeUp 0.8s ease forwards;
}

.layer-film {
  height: 70px;
  background: #0C447C;
}

/* Stretch film's middle layer is a solid resin core (no bubble texture) */
.layer-core {
  height: 110px;
  background: #20A0D2;
  color: #ffffff;
}

.layer-diagram .layer:nth-child(1) { animation-delay: 0.1s; }
.layer-diagram .layer:nth-child(2) { animation-delay: 0.25s; }
.layer-diagram .layer:nth-child(3) { animation-delay: 0.4s; }

@media (max-width: 900px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}




/* ================= BENEFITS SECTION ================= */

.benefits-section {
  padding: 120px 20px;
  background: #ffffff;
}

.benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

/* Section title */
.benefits-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 70px;
  color: #434545;
}

/* Rows */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.benefit-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(176, 225, 247, 0.35);
  border-radius: 16px;
  padding: 26px 34px;
  overflow: hidden;
  transition: box-shadow 0.35s ease;

  opacity: 0;
  transform: translateY(24px);
}

.benefit-row.is-visible {
  animation: fadeUp 0.8s ease forwards;
}

.benefit-row:hover {
  box-shadow: 0 14px 30px rgba(12, 68, 124, 0.12);
}

/* Big faint number */
.benefit-row::before {
  content: attr(data-index);
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 64px;
  font-weight: 700;
  color: rgba(12, 68, 124, 0.08);
  line-height: 1;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Icon badge */
.benefit-row .benefit-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-row .benefit-icon img {
  width: 26px;
  height: 26px;
  margin: 0;
  opacity: 0.85;
}

.benefit-row-content {
  position: relative;
  z-index: 1;
}

.benefit-row h3 {
  color: #004A96;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
}

.benefit-row p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #434545;
  max-width: 600px;
}

.benefit-row:nth-child(1) { animation-delay: 0.1s; }
.benefit-row:nth-child(2) { animation-delay: 0.2s; }
.benefit-row:nth-child(3) { animation-delay: 0.3s; }
.benefit-row:nth-child(4) { animation-delay: 0.4s; }
.benefit-row:nth-child(5) { animation-delay: 0.5s; }

@media (max-width: 600px) {
  .benefit-row { padding: 20px; gap: 16px; }
  .benefit-row::before { font-size: 40px; right: 14px; }
  .benefit-row .benefit-icon { width: 44px; height: 44px; }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}






/* ================= APPLICATIONS ================= */

.applications-section {
  padding: 120px 20px;
  background: #ffffff;
}

.applications-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.applications-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 28px;
  text-align: left;
  color: #434545;
}

/* Tabs */
.application-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.application-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d8e4ee;
  color: #666666;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.application-tab i {
  font-size: 15px;
}

.application-tab:hover {
  border-color: #20A0D2;
  color: #0C447C;
}

.application-tab.active {
  background: #0C447C;
  border-color: #0C447C;
  color: #ffffff;
}

/* Panels */
.application-panel {
  display: none;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(12, 68, 124, 0.12);
}

.application-panel.active {
  display: flex;
}

.application-panel.active .application-photo {
  animation: appPhotoIn 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.application-panel.active .application-content {
  animation: appContentIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.12s backwards;
}

@keyframes appPhotoIn {
  from { opacity: 0; transform: scale(1.12); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes appContentIn {
  from { opacity: 0; transform: translateX(26px); }
  to   { opacity: 1; transform: translateX(0); }
}

.application-photo {
  position: relative;
  flex: 0 0 38%;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-color: #cfe6f2;
}

.application-content {
  flex: 1;
  padding: 44px 48px;
}

/* No-photo layout: this page shows applications as text-only panels */
.application-panel .application-content {
  max-width: 720px;
  padding: 48px 56px;
}

.application-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #004A96;
  margin-bottom: 22px;
}

/* Checklist */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #434545;
}

.check-list li i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e6f1fb;
  color: #0C447C;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 800px) {
  .application-panel {
    flex-direction: column;
  }
  .application-photo {
    flex: none;
    width: 100%;
    min-height: 180px;
  }
  .application-content {
    padding: 30px 26px;
  }
  .application-tabs {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .application-tab {
    flex: 0 0 auto;
  }
}




/* ================= TECHNICAL SPECIFICATIONS ================= */

.specs-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #f6fbfe 50%, #ffffff 100%);
}

.specs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.specs-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #434545;
  margin-bottom: 18px;
}

.specs-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #7C7C7C;
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.spec-card {
  background: #ffffff;
  border: 1px solid #e3eef6;
  border-radius: 14px;
  padding: 24px 26px;
  transition: box-shadow 0.35s ease;

  opacity: 0;
  transform: translateY(24px);
}

.spec-card.is-visible {
  animation: fadeUp 0.7s ease forwards;
}

.specs-grid .spec-card:nth-child(1) { animation-delay: 0.05s; }
.specs-grid .spec-card:nth-child(2) { animation-delay: 0.12s; }
.specs-grid .spec-card:nth-child(3) { animation-delay: 0.19s; }
.specs-grid .spec-card:nth-child(4) { animation-delay: 0.26s; }
.specs-grid .spec-card:nth-child(5) { animation-delay: 0.33s; }
.specs-grid .spec-card:nth-child(6) { animation-delay: 0.40s; }
.specs-grid .spec-card:nth-child(7) { animation-delay: 0.47s; }

.spec-card:hover {
  box-shadow: 0 14px 30px rgba(12, 68, 124, 0.12);
}

.spec-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #7C7C7C;
  margin-bottom: 10px;
}

.spec-value {
  font-size: 21px;
  font-weight: 700;
  color: #0C447C;
  font-family: 'Montserrat', Arial, sans-serif;
}




/* ================= OPTIONS & CUSTOMIZATION ================= */

.options-section {
  padding: 80px 20px;
}

.options-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.options-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #434545;
  margin-bottom: 70px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.option-card {
  background: #ffffff;
  border: 1px solid #e3eef6;
  border-radius: 16px;
  padding: 30px 26px;
  transition: box-shadow 0.35s ease;

  opacity: 0;
  transform: translateY(24px);
}

.option-card.is-visible {
  animation: fadeUp 0.7s ease forwards;
}

.options-grid .option-card:nth-child(1) { animation-delay: 0.05s; }
.options-grid .option-card:nth-child(2) { animation-delay: 0.18s; }
.options-grid .option-card:nth-child(3) { animation-delay: 0.31s; }

.option-card:hover {
  box-shadow: 0 18px 36px rgba(12, 68, 124, 0.14);
}

.option-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e6f1fb;
  color: #0C447C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.option-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #004A96;
  margin-bottom: 14px;
}

.option-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-tags span {
  background: #e6f1fb;
  color: #0C447C;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.options-note {
  margin-top: 14px;
  font-size: 13px;
  color: #7C7C7C;
}

.option-card-dark {
  background: #0C447C;
  border: none;
  color: #ffffff;
}

.option-card-dark .option-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #9fd4ef;
}

.option-card-dark h3 {
  color: #ffffff;
}

.option-card-dark p {
  font-size: 14px;
  line-height: 1.65;
  color: #cfe6f2;
}

@media (max-width: 800px) {
  .options-grid {
    grid-template-columns: 1fr;
  }
}



/* ================= WHY POLYMER NAMI NOVIN ================= */

.why-section {
  padding: 100px 20px;
  background: #ffffff;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-panel {
  display: flex;
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(12, 68, 124, 0.12);

  opacity: 0;
  transform: translateY(24px);
}

.why-panel.is-visible {
  animation: fadeUp 0.8s ease forwards;
}

.why-diagonal {
  flex: 0 0 34%;
  position: relative;
  background-color: #0E3A5C;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.why-diagonal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 58, 92, 0.78) 0%, rgba(14, 58, 92, 0.45) 100%);
}

.why-text {
  flex: 1;
  padding: 44px 50px 44px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-text h2 {
  font-size: 32px;
  font-weight: 600;
  color: #434545;
  margin-bottom: 16px;
}

.why-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #434545;
  max-width: 600px;
}

.why-stats {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}

.why-stat {
  flex: 1;
  background: rgba(176, 225, 247, 0.35);
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  transition: background 0.3s ease;

  opacity: 0;
  transform: translateY(24px);
}

.why-stat.is-visible {
  animation: fadeUp 0.7s ease forwards;
}

.why-stats .why-stat:nth-child(1) { animation-delay: 0.1s; }
.why-stats .why-stat:nth-child(2) { animation-delay: 0.22s; }
.why-stats .why-stat:nth-child(3) { animation-delay: 0.34s; }

.why-stat:hover {
  background: rgba(176, 225, 247, 0.6);
}

.why-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #0C447C;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat-label {
  font-size: 13px;
  color: #434545;
  font-weight: 600;
}

@media (max-width: 800px) {
  .why-panel { flex-direction: column; min-height: auto; }
  .why-diagonal { flex: none; width: 100%; height: 100px; clip-path: none; }
  .why-text { padding: 30px 26px; }
  .why-stats { flex-direction: column; }
}



/* ================= TYPES & DIFFERENCES ================= */

.types-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #f6fbfe 50%, #ffffff 100%);
}

.types-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.types-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #434545;
  margin-bottom: 18px;
}

.types-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #7C7C7C;
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.type-card {
  background: #ffffff;
  border: 1px solid #e3eef6;
  border-radius: 16px;
  padding: 30px 26px;
  transition: box-shadow 0.35s ease;

  opacity: 0;
  transform: translateY(24px);
}

.type-card.is-visible {
  animation: fadeUp 0.7s ease forwards;
}

.types-grid .type-card:nth-child(1) { animation-delay: 0.05s; }
.types-grid .type-card:nth-child(2) { animation-delay: 0.12s; }
.types-grid .type-card:nth-child(3) { animation-delay: 0.19s; }
.types-grid .type-card:nth-child(4) { animation-delay: 0.26s; }
.types-grid .type-card:nth-child(5) { animation-delay: 0.33s; }
.types-grid .type-card:nth-child(6) { animation-delay: 0.40s; }
.types-grid .type-card:nth-child(7) { animation-delay: 0.47s; }
.types-grid .type-card:nth-child(8) { animation-delay: 0.54s; }
.types-grid .type-card:nth-child(9) { animation-delay: 0.61s; }
.types-grid .type-card:nth-child(10) { animation-delay: 0.68s; }
.types-grid .type-card:nth-child(11) { animation-delay: 0.75s; }

.type-card:hover {
  box-shadow: 0 18px 36px rgba(12, 68, 124, 0.14);
}

.type-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e6f1fb;
  color: #0C447C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.type-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #004A96;
  margin-bottom: 10px;
}

.type-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #434545;
  margin: 0;
}

@media (max-width: 900px) {
  .types-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .types-grid { grid-template-columns: 1fr; }
}



/* ================= HOW IT'S MADE ================= */

.process-section {
  padding: 100px 20px;
  background: #ffffff;
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #434545;
  margin-bottom: 18px;
}

.process-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #7C7C7C;
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: start;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  opacity: 0;
  transform: translateY(24px);
}

.process-step.is-visible {
  animation: fadeUp 0.7s ease forwards;
}

.process-steps .process-step:nth-child(1) { animation-delay: 0.05s; }
.process-steps .process-step:nth-child(2) { animation-delay: 0.13s; }
.process-steps .process-step:nth-child(3) { animation-delay: 0.21s; }
.process-steps .process-step:nth-child(4) { animation-delay: 0.29s; }
.process-steps .process-step:nth-child(5) { animation-delay: 0.37s; }
.process-steps .process-step:nth-child(6) { animation-delay: 0.45s; }

.process-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0C447C;
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 17px;
  font-weight: 600;
  color: #004A96;
  margin-bottom: 4px;
}

.process-step p {
  font-size: 15px;
  line-height: 1.6;
  color: #434545;
  margin: 0;
  max-width: 480px;
}

@media (max-width: 900px) {
  .process-layout { grid-template-columns: 1fr; }
}



/* ================= FAQ ================= */

.faq-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #f6fbfe 50%, #ffffff 100%);
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #434545;
  margin-bottom: 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e3eef6;
  border-radius: 14px;
  overflow: hidden;

  opacity: 0;
  transform: translateY(24px);
}

.faq-item.is-visible {
  animation: fadeUp 0.6s ease forwards;
}

.faq-list .faq-item:nth-child(1) { animation-delay: 0.03s; }
.faq-list .faq-item:nth-child(2) { animation-delay: 0.08s; }
.faq-list .faq-item:nth-child(3) { animation-delay: 0.13s; }
.faq-list .faq-item:nth-child(4) { animation-delay: 0.18s; }
.faq-list .faq-item:nth-child(5) { animation-delay: 0.23s; }
.faq-list .faq-item:nth-child(6) { animation-delay: 0.28s; }
.faq-list .faq-item:nth-child(7) { animation-delay: 0.33s; }
.faq-list .faq-item:nth-child(8) { animation-delay: 0.38s; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #004A96;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question i {
  flex-shrink: 0;
  margin-left: 14px;
  font-size: 13px;
  color: #7C7C7C;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 240px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #434545;
  padding: 0 24px 20px;
  margin: 0;
}

@media (max-width: 600px) {
  .faq-question { padding: 16px 18px; font-size: 15px; }
}
