
/* ironers.css */


.ironers-hero-section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: #f4f4f4;
  align-items: center;
  justify-content: center;
}

.ironers-text-content {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.ironers-text-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.ironers-description {
  font-size: 1rem;
  margin-bottom: 20px;
}

.ironers-button {
  display: inline-block;
  background: #0052A3;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.ironers-image-container {
  flex: 1;
  text-align: center;
}

.ironers-image-container img {
  max-width: 100%;
  height: auto;
}

.ironers-banner {
  position: relative;
  margin: 40px 0;
}

.ironers-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.ironers-banner-text {
  position: absolute;
  top: 20%;
  left: 10%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 20px;
  max-width: 300px;
  border-radius: 5px;
}

.ironers-features-section {
  padding: 40px 20px;
  background: #fff;
}

.ironers-features h2 {
  text-align: center;
  margin-bottom: 30px;
}

.ironers-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.ironers-feature-item img {
  width: 80px;
  margin-right: 20px;
}

.ironers-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.ironers-block {
  display: flex;
  flex-direction: row;
  flex: 1 1 45%;
  margin-bottom: 30px;
  align-items: center;
}

.ironers-block-text {
  flex: 1;
  padding: 20px;
}

.ironers-block-img img {
  width: 100%;
  max-width: 340px;
}

.ironers-technologies {
  background: #eef3f7;
  padding: 40px 20px;
  text-align: center;
}

.ironers-subtitle {
  margin-bottom: 30px;
}

.ironers-tech-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ironers-tech-feature {
  max-width: 300px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.ironers-tech-feature img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.ironers-delivery {
  margin-top: 40px;
}

.ironers-delivery-options {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.ironers-delivery-option {
  max-width: 350px;
  padding: 20px;
}

.ironers-delivery-option img {
  width: 100%;
  height: auto;
}

.ironers-solutions {
  padding: 40px 20px;
  background: #f4f4f4;
  text-align: center;
}

.ironers-solution-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.ironers-solution-card {
  max-width: 300px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.ironers-heading {
  text-align: center;
  font-size: 2rem;
  margin: 50px 0 20px;
}

.ironers-product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 20px 40px;
  gap: 20px;
}

.ironers-product-card {
  background: white;
  padding: 15px;
  max-width: 250px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ironers-product-card img {
  width: 100%;
  height: auto;
}

.ironers-product-info {
  margin-top: 10px;
}

.ironers-product-code {
  font-weight: bold;
  color: #0052A3;
}

.ironers-product-btn {
  background: #0052A3;
  color: #fff;
  padding: 8px 10px;
  margin-top: 10px;
  display: inline-block;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.ironers-essentia {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.ironers-essentia-text {
  flex: 1;
}

.ironers-essentia-btn {
  flex: 1;
  text-align: right;
}

.ironers-essentia-btn a {
  background: #0052A3;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .ironers-blocks,
  .ironers-block,
  .ironers-essentia {
    flex-direction: column;
    text-align: center;
  }

  .ironers-essentia-btn {
    text-align: center;
    margin-top: 20px;
  }
}





	