.showcase-section {
  width: 100%;
  padding: 80px 20px;
  box-sizing: border-box;
  background-color: transparent; /* Allows yard2.jpg body layer backdrop to show through */
  display: flex;
  justify-content: center;
}

.showcase-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Left Graphic Panel Area styling */
.showcase-graphics {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-start;
  height: 480px;
  min-width: 450px;
}

.graphic-frame {
  overflow: hidden;
  border-radius: 4px;
}

.graphic-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Big Top Left image positioning parameter string */
.main-frame {
  width: 65%;
  height: 340px;
  position: relative;
  z-index: 2;
}

/* The subtle pink layout bar beneath the frame visible in the snap */
.frame-accent-bar {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60%;
  height: 6px;
  background-color: #e572a1; /* Soft pink accent color matches the photo styling */
}

/* Small overlapping bottom right layout view frame wrapper */
.secondary-frame {
  width: 50%;
  height: 260px;
  position: absolute;
  bottom: 20px;
  right: 10px;
  z-index: 3;
  border: 4px solid #0d0d0d; /* Provides visual split separation if bounds cross */
}

/* Right Text content panel styling definitions */
.showcase-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.showcase-heading {
  font-family: sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 20px 0;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.pink-accent {
  color: #e572a1; /* Clean typography highlight option matches text string snapshot */
}

.showcase-text {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #b3b3b3;
  margin: 0 0 18px 0;
}

/* Pure Black pill shaped button wrapper framework */
.showcase-cta-btn {
  display: inline-block;
  align-self: flex-start;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px; /* Pill curved layout profile rule */
  border: 1px solid #222222;
  transition: background-color 0.2s, border-color 0.2s;
  margin-top: 10px;
}

.showcase-cta-btn:hover {
  background-color: #161616;
  border-color: #444444;
}

/* Responsive view overrides targeting compact screens */
@media (max-width: 900px) {
  .showcase-container {
    flex-direction: column;
    gap: 40px;
  }
  .showcase-graphics {
    width: 100%;
    min-width: 100%;
    height: 380px;
  }
  .main-frame { height: 280px; }
  .secondary-frame { height: 200px; bottom: 0; }
  .showcase-heading { font-size: 28px; }
}

/* --- DYNAMIC INTERACTIVE SLIDER STYLING CANVAS --- */
/* --- WORKFLOW PROCESS CONTAINER STYLES --- */
.workflow-section {
  width: 100% !important;
  padding: 80px 20px !important;
  box-sizing: border-box !important;
  background-color: transparent !important; /* Lets your background image shine through */
  display: flex !important;
  justify-content: center !important;
}

.workflow-container {
  width: 100% !important;
  max-width: 1100px !important; /* Constrains column widths to match your slider and footer headers */
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 50px !important;
}

/* Left Graphics Layout Frame */
.workflow-graphics-collage {
  flex: 1 !important;
  max-width: 500px !important;
  display: block !important;
}

.workflow-graphics-collage img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 4px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
}

/* Right Content Panel Layout Frame */
.workflow-content {
  flex: 1.2 !important;
  color: #ffffff !important;
  text-align: left !important;
}

.workflow-heading {
  font-family: 'Oswald', sans-serif !important;
  font-size: 38px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  margin: 0 0 20px 0 !important;
  letter-spacing: 0.5px !important;
}

.workflow-intro-text {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #cccccc !important;
  margin: 0 0 15px 0 !important;
}

.workflow-sub-text {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  font-weight: bold !important;
  color: #ffffff !important;
  margin: 0 0 25px 0 !important;
}

/* Reconstructed Inline Checkmark Vector List */
.checkmark-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important; /* Balanced grid vertical list spacing gap */
}

.checkmark-list li {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  color: #cccccc !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  line-height: 1.4 !important;
}

/* Custom Vector Circled Bullet Framework */
.check-icon-wrapper {
  width: 22px !important;
  height: 22px !important;
  border: 2px solid #d92323 !important; /* Styled to match corporate identification red highlights */
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #d92323 !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}

.check-icon-wrapper svg {
  width: 12px !important;
  height: 12px !important;
  display: block !important;
}

/* Tablet & Smartphone layout adaptations */
@media (max-width: 900px) {
  .workflow-container {
    flex-direction: column !important; /* Collapse grid vertically into singular row columns */
    gap: 40px !important;
  }
  .workflow-graphics-collage {
    width: 100% !important;
    max-width: 100% !important;
  }
  .workflow-heading {
    font-size: 30px !important;
  }
}
