
        .placements-section {
            padding: 50px;
            background: #fff;
            text-align: center;
        }
        .placements-section h2 {
            
			font-size: 42px;
            line-height: 1.3;
            margin-bottom: 0;
        }
        .placements-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: auto;
        }
        .placements-boxes {
            display: flex;
            gap: 20px;
        }
        .box {
            background: #f5f0eb !important;
            padding: 20px;
            border-radius: 8px;
            text-align: left;
            width: 220px;
            
        }
        .box h3 {
            color: #444;
			font-size: 29px !important;
			font-weight: 900;
			font-family: inherit;
			text-align:left;
        }
        .box p {
            font-size: 14px;
            color: #666;
        }
        .logos {
            display: flex;
            gap: 20px;
        }
        .logos img {
            width: 100px;
            height: auto;
        }


.placements-section {
  padding: 50px;
  background: #fff;
  text-align: center;
}

.placements-section h2 {
font-size: 42px;
    line-height: 1.3;
    margin-bottom: 0;
}

.tagline {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.placements-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left Column: Statistic Boxes in 2x2 Grid */
.left-column {
  flex: 0;
}

.boxes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.box {
  background: #f4f4f4;
  padding: 20px;
  
  
}

.box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  
}

.box p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Right Column: Logos Grid arranged in 4 rows */
.right-column {
  flex: 1;
}

.logo-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* You can adjust individual rows if needed */
.logo-row.row-1 { /* 1 logo */ }
.logo-row.row-2 { /* 3 logos */ }
.logo-row.row-3 { /* 3 logos */ }
.logo-row.row-4 { /* 1 logo */ }

.logo-row img {
  max-width: 100px;
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .placements-container {
    flex-direction: column;
    align-items: center;
  }
  .left-column, .right-column {
    flex: 1 1 100%;
  }
}
