.container {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
  padding: 48px 0 64px;
}

.profile-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
}

.profile-photo-card {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 0 32px;
}

.profile-photo-box {
  width: 450px;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  background: #fce4ec;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 3px solid var(--pink-border, #f8bbd0);
  box-shadow: 0 8px 32px rgba(244, 84, 122, 0.18);
}

.profile-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.placeholder-img span {
  font-size: 0.85rem;
  color: #f4547a;
  opacity: 0.7;
}

.profile-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--dark, #1a1a2e);
}

.profile-about {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted, #555);
  max-width: 680px;
  margin: 0 auto 40px;
}

.services-section {
  width: 100%;
  text-align: left;
}

.services-heading {
  margin-top: 50px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark, #1a1a2e);
}

.services-count {
  text-align: center;
  font-size: 0.9rem;
  color: #f4547a;
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 50px;
}

.service-item {
  padding: 16px 20px;
  background: var(--white, #fff);
  border: 1px solid var(--pink-border, #f8bbd0);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.service-item span {
  font-size: 0.95rem;
  color: var(--dark, #1a1a2e);
  font-weight: 500;
  transition: color 0.25s ease;
}

.service-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-check svg {
  width: 100%;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--pink, #f4547a);
  box-shadow: 0 12px 24px rgba(244, 84, 122, 0.15);
  cursor: pointer;
}

.disclaimer {
  margin-top: -40px;
  margin-left: 250px; margin-right: 250px;
}

.service-item:hover span {
  color: var(--pink, #f4547a);
}


@media (max-width: 768px) {
  .container { padding: 36px 20px; }
  
  .disclaimer {margin-left: 20px; margin-right: 20px;}
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  
  .disclaimer {margin-left: 20px; margin-right: 20px;}
  .container { padding: 36px 20px; }
  .profile-photo-box {
    width: 260px;
    height: 320px;
  }

  .profile-name {
    font-size: 1.6rem;
  }

  .profile-about {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 28px 16px; }
    
  .disclaimer {margin-left: 20px; margin-right: 20px;}

  .profile-photo-box {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 3/4;
  }

  .profile-name {
    font-size: 1.4rem;
  }

  .profile-about {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }
}