* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #2d145a url('../../../assets/img/MainBG.png') no-repeat center center / cover;
  color: #f8f8f8;
  line-height: 1.6;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background: rgba(248,249,250,0.88);
  padding: 20px;
  text-align: right;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #2b1a93;
  letter-spacing: 0.1em;
}

.main-content {
  flex: 1;
  padding: 40px 20px;
}

.intro-section {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2b1a93;
  padding: 15px 30px;
  display: inline-block;
  border: 2px solid #cb9ddb;
  border-radius: 15px;
  background: rgba(255,255,255,0.79);
}

.profiles-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.profile-card {
  width: 320px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-header {
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.kai-header {
  background: linear-gradient(rgba(255, 183, 77, 0.4), rgba(255, 152, 0, 0.4)), url('../../../assets/img/floating.png') no-repeat center center / cover;
  background-color: #ffb74d;
}

.aki-header {
  background: linear-gradient(rgba(149, 117, 205, 0.4), rgba(103, 58, 183, 0.4)), url('../../../assets/img/IMG_7933.jpeg') no-repeat center center / cover;
  background-color: #9575cd;
}

.val-header {
  background: linear-gradient(rgba(79, 195, 247, 0.4), rgba(2, 136, 209, 0.4)), url('../../../assets/img/Seasoned.png') no-repeat center center / cover;
  background-color: #4fc3f7;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  bottom: -30px;
  background: white;
}

.card-content {
  padding: 50px 25px 25px 25px;
  text-align: center;
}

.kai-content {
  background: linear-gradient(135deg, #fff3e0 70%, #ffe0b2 100%);
}

.aki-content {
  background: linear-gradient(135deg, #ede7f6 70%, #b39ddb 100%);
}

.val-content {
  background: linear-gradient(135deg, #e1f5fe 70%, #4fc3f7 100%);
}

.profile-name {
  font-size: 1.5rem;
  color: #2d145a;
  margin-bottom: 8px;
  font-weight: 600;
}

.profile-desc {
  color: #4a3a6a;
  font-size: 1rem;
  margin-bottom: 20px;
}

.profile-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.kai-btn {
  background-color: #ffe0b2;
  color: #2d145a;
}

.kai-btn:hover {
  background-color: #ffcc80;
  box-shadow: 0 4px 12px rgba(255, 204, 128, 0.3);
}

.aki-btn {
  background-color: #b39ddb;
  color: #2d145a;
}

.aki-btn:hover {
  background-color: #9575cd;
  box-shadow: 0 4px 12px rgba(149, 117, 205, 0.3);
}

.val-btn {
  background-color: #4fc3f7;
  color: #2d145a;
}

.val-btn:hover {
  background-color: #29b6f6;
  box-shadow: 0 4px 12px rgba(41, 182, 246, 0.3);
}

.footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 20px 0;
  text-align: center;
  margin-top: auto;
}

.footer-text {
  color: #aaa;
  font-size: 1rem;
}

.footer {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
}

.footer-top {
  margin-bottom: 15px;
}

.footer-top .privacy-text a {
  color: #2d145a;
  text-decoration: none;
  font-weight: 500;
  margin-right: 10px;
}

.footer-top .copyright {
  font-size: 0.95rem;
  color: #000000;
  margin-left: 10px;
}

@media (max-width: 1100px) {
  .profiles-section {
    gap: 25px;
  }
}

@media (max-width: 1100px) {
  .profile-card {
    width: 300px;
  }
}

@media (max-width: 900px) {
  .profiles-section {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .profile-card {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 1.8rem;
    padding: 12px 20px;
  }
}

@media (max-width: 600px) {
  .logo {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .card-content {
    padding: 45px 20px 20px 20px;
  }
}

@media (max-width: 600px) {
  .profile-name {
    font-size: 1.3rem;
  }
}

