* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  line-height: 1.7;
}

header {
  text-align: center;
  padding: 60px 20px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
}

header h1 span {
  color: #00e0ff;
}

header p {
  font-size: 1.2rem;
  color: #ccc;
  margin-top: 10px;
}

.about-section {
  padding: 60px 10%;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  color: #00e0ff;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.about-text p {
  margin-bottom: 25px;
  color: #ddd;
  text-align: justify;
}

.about-illustration img {
  width: 300px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.owner-section {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.05);
}

.owner-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #00e0ff;
}

.owner-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.owner-photo img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00e0ff;
  box-shadow: 0 0 20px rgba(0, 224, 255, 0.4);
  transition: transform 0.3s;
}

.owner-photo img:hover {
  transform: scale(1.05);
}

.owner-info {
  max-width: 400px;
  text-align: left;
}

.owner-info h3 {
  font-size: 1.8rem;
  color: #00e0ff;
}

.owner-info p {
  color: #ccc;
  margin-top: 10px;
}

.owner-info .bio {
  margin-top: 15px;
  color: #ddd;
  font-size: 1rem;
}

footer {
  text-align: center;
  padding: 25px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
