.section-4-container {
  background-image: url('../img/background-four.png');
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 0;
  scroll-snap-align: start;
}

.section-4-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Left Column */
.section-4-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.section-4-title {
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 3rem;
}

.section-4-title span {
  color: #d4af37;
  display: block;
}

.section-4-icon {
  font-size: 3rem;
  color: #d4af37;
  vertical-align: middle;
  border: 2px solid #d4af37;
  border-radius: 50%;
  padding: 0.2rem 0.8rem;
  margin-left: 1rem;
}

.section-4-subtitle {
  border-left: 4px solid #d4af37;
  padding-left: 1.5rem;
  font-size: 2rem;
  color: #fff;
  line-height: 1.3;
  max-width: 300px;
}

/* Center Column */
.section-4-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-4-phone {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(calc(-50% - 20px));
  width: 100%;
  max-width: 650px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

/* Right Column */
.section-4-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end; /* Align content to the right side visually? Image shows text aligned left but positioned on the right. Let's align items flex-end but text-align right or left? */
  /* Actually looking at the image:
     Stats are top right.
     Description is aligned right or center relative to itself?
     "Queremos que te sientas seguro..." looks left aligned within the right column.
     Let's align items to flex-start (left of the column) but maybe padding?
  */
  align-items: flex-start;
  padding-left: 2rem;
  color: #fff;
}

.section-4-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  width: 100%;
  justify-content: flex-start;
}

.section-4-stat-item {
  text-align: center;
}

.section-4-stat-label {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.section-4-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-4-description {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  max-width: 400px;
  line-height: 1.4;
}

.section-4-cta-text {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.section-4-store-buttons {
  display: flex;
  gap: 1rem;
}

.section-4-store-img {
  height: 45px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.section-4-store-img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1200px) {
  .section-4-title {
    font-size: 2.8rem;
  }
  .section-4-phone {
    max-width: 320px;
  }
}

@media (max-width: 992px) {
  .section-4-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .section-4-left {
    align-items: center;
    padding-right: 0;
  }

  .section-4-subtitle {
    border-left: none;
    border-top: 4px solid #d4af37;
    padding-left: 0;
    padding-top: 1rem;
    max-width: 100%;
  }

  .section-4-right {
    align-items: center;
    padding-left: 0;
  }

  .section-4-stats {
    justify-content: center;
  }

  .section-4-description {
    text-align: center;
  }
  
  .section-4-phone {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 280px;
    transform: translateX(0);
  }
}
