/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f0f4f8;
  color: #222;
}

/* Header with Logo */
.header {
  background: #0f172a;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo {
  height: 50px;
  width: 50px;
  object-fit: contain;
  border-radius: 10px;
}

.header h1 {
  font-size: 2rem;
  font-weight: 600;
  background: linear-gradient(60deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.container h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1e3c72;
  position: relative;
}

.container h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin: 8px auto 0;
  background: #0072ff;
  border-radius: 5px;
}

/* Card */
.card {
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* Image */
.owner-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #0072ff;
  box-shadow: 0 0 20px rgba(0, 114, 255, 0.4);
  margin-bottom: 25px;
}

/* Text Info */
.info h3 {
  font-size: 26px;
  color: #0f172a;
  margin-bottom: 5px;
}

.info h4 {
  color: #0072ff;
  margin-bottom: 20px;
  font-weight: 500;
}

.info p {
  font-size: 16px;
  line-height: 1.7;
  padding: 0 15px;
  color: #333;
  text-align: justify;
}

/* Responsive */
@media (min-width: 768px) {
  .card {
    flex-direction: row;
    text-align: left;
  }

  .owner-image {
    margin-right: 40px;
    margin-bottom: 0;
  }

  .info {
    flex: 1;
  }
}
