.procedure-highlights {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eef4ff, #f9fbfd);
}

.procedure-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.procedure-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.procedure-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* FORCE 3 PER ROW */
.procedure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD DESIGN */
.procedure-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

/* IMAGE */
.procedure-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* CONTENT */
.procedure-content {
  padding: 25px;
  background: #ffffff;
}

.procedure-content h3 {
  font-size: 20px;
  color: #111;
  margin-bottom: 8px;
  font-weight: 600;
}

.procedure-content span {
  font-size: 14px;
  color: #0a7cff;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* HOVER EFFECT */
.procedure-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(10, 124, 255, 0.2);
}

.procedure-card:hover img {
  transform: scale(1.08);
}

/* Subtle bottom accent line */
.procedure-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #0a7cff, #00c6ff);
  transition: width 0.4s ease;
}

.procedure-card:hover::after {
  width: 100%;
}
.procedure-link {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #0a7cff;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

/* Underline animation */
.procedure-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #0a7cff;
  transition: width 0.3s ease;
}

.procedure-card:hover .procedure-link::after {
  width: 100%;
}

.procedure-card:hover .procedure-link {
  transform: translateX(5px);
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .procedure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.piles-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f9ff, #ffffff);
}

.piles-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT CONTENT */
.piles-content {
  flex: 1;
}

.piles-content h1 {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.piles-content p {
  font-size: 17px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.piles-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.piles-features li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
}

/* BUTTONS */
.piles-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #0a7cff;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #005edb;
}

.btn-secondary {
  border: 2px solid #0a7cff;
  color: #0a7cff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: #0a7cff;
  color: #fff;
}

/* RIGHT IMAGE */
.piles-image {
  flex: 1;
  text-align: right;
}

.piles-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .piles-container {
    flex-direction: column;
    text-align: center;
  }

  .piles-image {
    text-align: center;
  }

  .piles-content h1 {
    font-size: 28px;
  }

  .piles-buttons {
    justify-content: center;
  }
}


.piles-overview-section {
  padding: 80px 20px;
  background: #f8fbff;
}

.piles-overview-container {
  max-width: 1200px;
  margin: auto;
}

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

.piles-overview-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.piles-overview-header p {
  font-size: 17px;
  color: #555;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

.piles-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.overview-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.overview-card h3 {
  font-size: 20px;
  color: #0a7cff;
  margin-bottom: 15px;
  font-weight: 600;
}

.overview-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.overview-card ul {
  padding-left: 18px;
}

.overview-card ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.6;
}

.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(10,124,255,0.12);
}

/* Responsive */
@media (max-width: 992px) {
  .piles-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .piles-overview-header h2 {
    font-size: 24px;
  }
}

.piles-treatment-section {
  padding: 80px 20px;
  background: #ffffff;
}

.piles-treatment-container {
  max-width: 1100px;
  margin: auto;
}

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

.treatment-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.treatment-header p {
  font-size: 16px;
  color: #555;
  max-width: 750px;
  margin: auto;
}

.treatment-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.treatment-card {
  background: #f8fbff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.treatment-card h3 {
  color: #0a7cff;
  margin-bottom: 20px;
  font-size: 22px;
}

.treatment-card ul {
  padding-left: 18px;
}

.treatment-card ul li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.highlight-card {
  background: #eef5ff;
  border: 2px solid #0a7cff20;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(10,124,255,0.12);
}

@media (max-width: 768px) {
  .treatment-comparison {
    grid-template-columns: 1fr;
  }
}

.piles-faq-section {
  padding: 80px 20px;
  background: #f8fbff;
}

.piles-faq-container {
  max-width: 900px;
  margin: auto;
}

.piles-faq-container h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-item {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0a7cff;
}

.faq-item p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}