.home-cost-2 {
  padding: 70px 20px;
  background-color: #ffffff;
}

.home-cost-2__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home-cost-2__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-cost-2__eyebrow {
  color: var(--color-primary);
  font-size: var(--section-eyebrow-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.home-cost-2__heading {
  font-size: var(--section-heading-size);
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.home-cost-2__description {
  font-size: 16px;
  line-height: var(--section-body-line-height);
  color: #4a4a4a;
  margin: 0;
}

.home-cost-2__cta {
  display: inline-block;
  padding: 15px 40px;
  background: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary) 0%, #5a4ec9 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(120, 104, 230, 0.3);
}

.home-cost-2__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(120, 104, 230, 0.4);
}

.home-cost-2__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f7fa;
  border-radius: 20px;
  overflow: hidden;
  padding: 40px;
}

.home-cost-2__image {
  width: 100%;
  height: auto;
  max-width: 600px;
  object-fit: contain;
  display: block;
}

/* Tablet */
@media (max-width: 1199px) and (min-width: 1024px) {
  .home-cost-2 {
    padding: 60px 20px;
  }

  .home-cost-2__container {
    gap: 40px;
  }

  .home-cost-2__heading {
    font-size: var(--section-heading-size-tablet);
  }

  .home-cost-2__description {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 1023px) {
  .home-cost-2 {
    padding: 50px 20px;
  }

  .home-cost-2__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-cost-2__eyebrow {
    font-size: 11px;
    text-align: center;
  }

  .home-cost-2__heading {
    font-size: var(--section-heading-size-mobile);
    text-align: center;
  }

  .home-cost-2__description {
    font-size: 15px;
    text-align: center;
  }

  .home-cost-2__cta {
    align-self: center;
  }

  .home-cost-2__image-wrapper {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .home-cost-2__heading {
    font-size: 24px;
  }

  .home-cost-2__image-wrapper {
    padding: 20px;
  }
}
