@charset "utf-8";

/* --- About page --- */
/* About Hero */
.profile-section {
  position: relative;
  height: auto;
  background: url("../images/img_5464.avif") center/cover no-repeat;
  display: block;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  z-index: 0;
}

.profile-section h2 {
  color: #fff;
}

.profile-hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
  gap: 5rem;
}

.profile-text {
  background: rgba(0, 0, 0, 0.067);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(30px);
  max-width: 480px;
}

.profile-text p {
  color: #fff;
}

.profile-section img {
  width: 280px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* --- career Section --- */
.career-section {
  padding: 100px 5%;
  overflow: hidden;
  background: linear-gradient(to bottom, #eaf9ff 0%, #cbe7f5 100%);
  text-align: left;
  position: relative;
}

.career-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/back.png") repeat center center;
  background-size: 300px auto;
  opacity: 0.15;
  z-index: 0;
}

.career-section * {
  position: relative;
  z-index: 1;
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  background: rgba(255, 255, 255, 0.6);
  padding: 2rem 2.5rem;
  border-radius: 10px;
  border-left: 5px solid var(--color-main);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 2rem;
}

.timeline-item span.year {
  display: block;
  min-width: 80px;
  font-weight: bold;
  color: var(--color-main);
}

.career-section h3 {
  margin-bottom: 1rem;
}

.timeline-content p {
  color: #666;
  text-shadow: none;
}

/* --- Privacy Policy Page --- */
.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 50px;
  border-radius: var(--radius-card);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.privacy-container h3 {
  font-size: 1.3rem;
  margin: 30px 0 10px;
  border-left: 4px solid var(--color-main);
  padding-left: 10px;
}

.privacy-container p {
  font-size: 1.1rem;
  color: #666;
  text-shadow: none;
}

.privacy-container li {
  font-size: 1.1rem;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.privacy-container li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--color-main);
  border-radius: 10px;
}

.privacy-container ul {
  margin-left: 20px;
}

.back-home-wrapper {
  margin-top: 60px;
  text-align: center;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 30px;
  background: #fff;
  color: var(--color-main);
  border: 2px solid var(--color-main);
  border-radius: var(--radius-btn);
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.1);
  transition: var(--transition-base);
}

.back-home-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.back-home:hover {
  background: var(--color-main);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 86, 179, 0.25);
}

.back-home:hover .back-home-icon svg {
  transform: translateX(-5px);
}

@media (max-width: 768px) {
  .back-home { padding: 10px 20px; font-size: 0.9rem; }
  .profile-text { backdrop-filter: blur(100px); }
}