@import './shared.css';

.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}

header {
  width: 100%;
  max-width: 800px;
  text-align: center;
  padding: 1rem 0 2rem;
}

.logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--app-tint);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.4rem;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.82;
  text-decoration: none;
}

h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.125rem;
  color: var(--app-text-muted);
}

.last-updated {
  font-size: 0.875rem;
  color: var(--app-text-soft);
}

.content {
  width: 100%;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--app-shadow);
}

@media (min-width: 640px) {
  .content {
    padding: 3rem;
  }
}

.intro {
  font-size: 1.125rem;
  color: var(--app-text-muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(75, 85, 99, 0.22);
}

section {
  margin-bottom: 2rem;
}

section:last-child {
  margin-bottom: 0;
}

h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--app-tint);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

h2 .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  background: rgba(119, 96, 243, 0.12);
  color: var(--app-tint);
}

h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.25rem 0 0.75rem;
  color: var(--app-text);
}

p {
  margin-bottom: 0.75rem;
  color: var(--app-text);
}

ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--app-text);
}

.contact-info {
  background: rgba(119, 96, 243, 0.08);
  border: 1px solid rgba(119, 96, 243, 0.2);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-top: 0.75rem;
}

.contact-info a {
  color: var(--app-tint);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.mail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.05rem;
  border-radius: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--app-gradient-start), var(--app-gradient-end));
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(82, 66, 167, 0.28);
}

.mail-button:hover {
  text-decoration: none;
  filter: brightness(1.03);
}

.contact-box {
  background: rgba(119, 96, 243, 0.08);
  border: 1px solid rgba(119, 96, 243, 0.18);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-box h2 {
  justify-content: center;
  margin-bottom: 0.5rem;
}

.contact-box p {
  margin-bottom: 1rem;
  color: var(--app-text-muted);
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--app-tint);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}

.email-link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  text-decoration: none;
}

.faq-item {
  background: rgba(75, 85, 99, 0.06);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  font-weight: 700;
  color: var(--app-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.faq-question::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  background: var(--app-tint);
  color: white;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.faq-answer {
  color: var(--app-text-muted);
  padding-left: 2rem;
  margin-bottom: 0;
}

footer {
  margin-top: auto;
  text-align: center;
  padding: 1rem 0 2rem;
  color: var(--app-text-soft);
  font-size: 0.875rem;
}

footer a {
  color: var(--app-tint);
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}