.at-page {
  min-height: 100vh;
  background-color: #eef2f7;
  display: flex;
  align-items: center;
  padding: 30px 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.at-title {
  font-size: 38px;
  font-weight: 600;
  color: #005361;
  margin-bottom: 8px;
}

.at-subtitle {
  font-size: 1rem;
  color: #555;
}

.at-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 20px 50px;
}

.at-illustration {
  margin-bottom: 16px;
}

.at-card-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #1a9b8e;
  margin-bottom: 5px;
}

.at-card-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.5;
}

.at-for-section {
  margin-bottom: 22px;
}
.at-card-border {
    border: none;
    border-top: 1px solid #e7e7e7;
    margin: 5px 0;
    width: 100%;
}
.at-for-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 12px;
}

.at-for-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.at-for-item {
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
}

.at-for-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.at-btn-primary {
  padding: 10px;
  background-color: #0f2f4a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  height: 48px;
}

.at-btn-primary:hover {
  background-color: #1a4a6a;
  color: #fff;
}

.at-btn-outline {
  height: 48px;
  padding: 10px;
  background-color: transparent;
  color: #1a9b8e;
  border: 2px solid #1a9b8e;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.at-btn-outline:hover {
  background-color: #1a9b8e;
  color: #fff;
}

.at-footer {
  gap: 6px;
  font-size: 0.9rem;
  color: #555;
}

.at-footer-icon {
  width: 22px;
  height: 22px;
  border: 2px solid #888;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: #888;
  flex-shrink: 0;
  margin-right: 6px;
}

.at-learn-more {
  color: #1a9b8e;
  text-decoration: none;
  font-weight: 500;
}

.at-learn-more:hover {
  text-decoration: underline;
}