/* กล่องหลัก */
.website-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 24px;
  max-width: 800px;
  margin: 80px auto 0px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* เอฟเฟกต์ hover */
.website-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* โลโก้ */
.website-card-logo img {
  width: 400px;
  height: auto;
  border-radius: 12px;
}

/* เนื้อหา */
.website-card-content {
  flex: 1;
}

.website-card-title {
  font-size: 1.5rem;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.website-card-description {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ปุ่ม */
/* ปุ่ม */
.website-card-button {
  display: inline-block;
  padding: 12px 28px;
  background: #ff7300; /* สีน้ำเงิน */
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;

  /* จัดกึ่งกลาง */
  margin: 0 auto;
  display: block;
  text-align: center;
}


.website-card-button:hover {
  background: #0088f7;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .website-card {
    flex-direction: column;
    text-align: center;
  }

  .website-card-logo img {
    width: 400px;
    margin-bottom: 16px;
  }

  .website-card-title {
    font-size: 1.3rem;
  }

  .website-card-description {
    font-size: 0.95rem;
  }
}
