/* Section wrapper (About) */
.about-clean {
  /* extra top padding because navbar is fixed (80px height approx) */
  padding: 120px 24px 60px;
  flex: 1;
}

/* Container */
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* =============== TEXT BLOCK =============== */

.about-text h1 {
  font-size: 42px;
  color: var(--roller);
  margin-bottom: 18px;
  border-bottom: 3px solid var(--blinds);
  display: inline-block;
  padding-bottom: 6px;
}

.about-text h2 {
  font-size: 28px;
  color: var(--roller);
  margin: 28px 0 14px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 8px;
}

/* USP list */
.about-text ol {
  padding-left: 1.2rem;
  margin: 0;
}

.about-text ol li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 10px;
}

.about-text ol li strong {
  color: var(--roller);
}

/* =============== IMAGE BLOCK =============== */

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 85%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.about-image img:hover {
  transform: scale(1.02);
}

/* =============== RESPONSIVE STYLES =============== */

/* Tablets / Small laptops (<= 1024px) */
@media (max-width: 1024px) {
  .about-clean {
    padding: 110px 20px 50px;
  }

  /* 2 columns → 1 column stacked */
  .about-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-text {
    text-align: center;
  }

  .about-text h1 {
    font-size: 36px;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-text p,
  .about-text ol {
    font-size: 16px;
  }

  .about-text ol {
    padding-left: 0;
    list-style-position: inside;
  }

  .about-text ol li {
    max-width: 540px;
    margin: 0 auto 10px;
    text-align: left;
  }

  .about-image img {
    width: 90%;
    margin: 0 auto;
  }
}

/* Mobiles (<= 768px) */
@media (max-width: 768px) {
  .about-clean {
    padding: 100px 18px 40px;
  }

  .about-text h1 {
    font-size: 30px;
  }

  .about-text h2 {
    font-size: 22px;
  }

  .about-text p {
    font-size: 15px;
  }

  .about-image img {
    width: 100%;
  }
}

/* Small phones (<= 480px) */
@media (max-width: 480px) {
  .about-clean {
    padding: 90px 16px 32px;
  }

  .about-text h1 {
    font-size: 26px;
  }

  .about-text h2 {
    font-size: 20px;
  }

  .about-text ol li {
    font-size: 15px;
  }
}