/* Cards Section */
.cards-section {
  padding: 60px 0;
}

.cards-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Row layout */
.cards-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.cards-row--reversed {
  flex-direction: row-reverse;
}

/* Content side */
.cards-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.cards-subtitle {
  font-size: 14px;
  color: #888888;
}

.cards-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.cards-description {
  font-size: 14px;
  line-height: 1.8;
  color: #888888;
  max-width: 380px;
}

.cards-button {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 36px;
  background-color: #335a59;
  border: 1px solid transparent;
  border-radius: 100px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cards-button:hover {
  background-color: #477573;
}

/* Image side */
.cards-image {
  flex: 1;
}

.cards-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .cards-section {
    padding: 30px 0;
  }

  .cards-container {
    padding: 0 20px;
    gap: 50px;
  }

  .cards-row,
  .cards-row--reversed {
    flex-direction: column;
    gap: 30px;
  }

  .cards-title {
    font-size: 22px;
  }
}
