/* ===========================
   GLOBAL STYLES
   =========================== */
body {
  font-family: Arial, sans-serif !important;
  margin: 0 !important;
  padding: 20px !important;
  background: #f9f9f9 !important;
  color: #333 !important;
}

.blog-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

h1 {
  text-align: center !important;
  margin-bottom: 40px !important;
  color: #222 !important;
  font-size: 2.2rem !important;
}

/* ===========================
   FLANGE ITEM STYLES
   =========================== */
.flange-item {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 35px !important;
  margin-bottom: 45px !important;
  background: #fff !important;
  border-radius: 10px !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08) !important;
  padding: 30px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.flange-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15) !important;
}

/* ===========================
   IMAGE STYLES
   =========================== */
.flange-item img {
  width: 100% !important;
  height: auto !important;
  max-width: 320px !important;
  max-height: 320px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  border: 1px solid #ddd !important;
  background: #fff !important;
  flex-shrink: 0 !important;
  display: block !important;
}

/* ===========================
   TEXT SECTION
   =========================== */
.flange-text {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.flange-text h2 {
  margin: 0 0 14px !important;
  color: #cc4b24 !important;
  font-size: 2rem !important;
  line-height: 1.3 !important;
  font-weight: bold !important;
}

.flange-text p {
  margin: 0 !important;
  line-height: 1.8 !important;
  font-size: 1.25rem !important;
  color: #333 !important;
  text-align: justify !important;
  max-width: 700px !important;
}

/* ===========================
   RESPONSIVE LAYOUT
   =========================== */
@media (max-width: 992px) {
  .flange-item {
    flex-direction: column !important;
    text-align: center !important;
    padding: 25px !important;
  }

  .flange-item img {
    margin: 0 0 20px !important;
    max-width: 400px !important;
  }

  .flange-text h2 {
    font-size: 1.8rem !important;
  }

  .flange-text p {
    font-size: 1.15rem !important;
    text-align: center !important;
  }
}

@media (max-width: 600px) {
  .flange-item img {
    max-width: 280px !important;
  }

  .flange-text h2 {
    font-size: 1.6rem !important;
  }

  .flange-text p {
    font-size: 1.05rem !important;
  }
}

/* ===========================
   LARGE SCREEN ENHANCEMENT
   =========================== */
@media (min-width: 1600px) {
  .flange-item img {
    max-width: 360px !important;
    max-height: 360px !important;
  }

  .flange-text h2 {
    font-size: 2.2rem !important;
  }

  .flange-text p {
    font-size: 1.35rem !important;
  }
}
