body {
  color: #f5f7fb;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

.experience-page {
  padding-top: 24px;
  padding-bottom: 24px;
}

.experience-card {
  max-width: 980px;
  margin: auto;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.65);
}

.page-intro {
  max-width: 860px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #eef3ff;
  margin-bottom: 24px;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.action-button {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.action-button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  color: white;
  text-decoration: none;
}

.action-button.primary {
  background: #7aa2ff;
  color: white;
}

.action-button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.job-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 18px;
}

.job-card:last-child {
  margin-bottom: 0;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.job-header h2 {
  font-size: 1.25rem;
  margin: 0;
  color: white;
}

.job-header span {
  color: #d9e3ff;
  font-size: 0.96rem;
  white-space: nowrap;
}

.job-subtitle {
  margin-bottom: 12px;
  color: #c7d8ff;
  font-size: 0.98rem;
}

.job-card ul {
  margin: 0;
  padding-left: 20px;
}

.job-card li {
  margin-bottom: 10px;
  line-height: 1.65;
  color: #edf2fb;
}

.site-footer {
  text-align: center;
  padding: 16px;
  color: #d7deef;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .experience-page {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .experience-card {
    padding: 20px;
  }

  .page-intro,
  .job-card li {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-button {
    text-align: center;
  }
}