/* Info Sections - Mobile First */
.info-sections {
  padding: 40px 0;
}

.info-sections .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.info-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-image {
  width: 100%;
  max-width: 350px;
}

.info-image img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.info-text {
  width: 100%;
}

.info-text h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.info-text p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
  line-height: 1.6;
}

.info-text .btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.info-text .btn:hover {
  background: #c91c75;
  transform: translateY(-1px);
}

/* Tablet - 768px and up */
@media (min-width: 768px) {
  .info-sections {
    padding: 60px 0;
  }

  .info-sections .container {
    padding: 0 40px;
  }

  .info-row {
    flex-direction: row;
    gap: 40px;
    margin-bottom: 80px;
    text-align: left;
  }

  .info-image {
    flex: 1;
    max-width: none;
  }

  .info-image img {
    border-radius: 25px;
  }

  .info-text {
    flex: 1;
  }

  .info-text h2 {
    font-size: 28px;
    margin-bottom: 22px;
  }

  .info-text p {
    font-size: 17px;
    margin-bottom: 30px;
  }
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
  .info-sections {
    padding: 80px 0;
  }

  .info-row {
    gap: 60px;
    margin-bottom: 100px;
  }

  .info-image img {
    border-radius: 30px;
  }

  .info-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .info-text p {
    font-size: 18px;
    margin-bottom: 35px;
  }
}
