.lifestyle-section {
  padding: 40px 0;
}

.lifestyle-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

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

.lifestyle-content h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.lifestyle-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.lifestyle-content {
  animation: fadeUp 0.6s ease;
  padding: 0 60px 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .lifestyle-section {
    padding: 0;
    padding-bottom: 40px;
  }

  .lifestyle-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lifestyle-content {
    text-align: center;
  }

  .lifestyle-content h2 {
    font-size: 28px;
  }

  .lifestyle-content p {
    font-size: 16px;
  }

  .lifestyle-content .btn-primary {
    width: 100%;
    max-width: 280px;
  }
}
