/* TrustRelayMail.com — Global Styles */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2d2d2d;
  background-color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4 {
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: #3a3a3a;
}

a {
  color: #2a6cb6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-identity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-identity .logo {
  width: 28px;
  height: 28px;
}

.site-identity span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav ul li a {
  font-size: 0.9rem;
  color: #4a4a4a;
  font-weight: 500;
  transition: color 0.15s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #2a6cb6;
  text-decoration: none;
}

/* Main */
main {
  padding: 3rem 0 4rem;
}

/* Hero */
.hero {
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.hero .subheadline {
  font-size: 1.1rem;
  color: #4a4a4a;
  max-width: 720px;
  line-height: 1.7;
}

/* Sections */
.section {
  margin-bottom: 2.5rem;
}

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

/* Info Blocks / Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.info-card {
  background-color: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 1.25rem;
}

.info-card h3 {
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.info-card p {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Status Badge */
.status-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background-color: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #3a3a3a;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2e9e5a;
  display: inline-block;
}

.status-item .label {
  font-weight: 500;
  color: #555;
}

/* Notice Box */
.notice-box {
  background-color: #f0f6fc;
  border-left: 3px solid #2a6cb6;
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
  margin: 1.5rem 0;
}

.notice-box p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.notice-box p:last-child {
  margin-bottom: 0;
}

/* Verification Steps */
.verification-list {
  list-style: none;
  padding: 0;
}

.verification-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.verification-list li:last-child {
  border-bottom: none;
}

.verification-list li::before {
  content: "✓";
  color: #2a6cb6;
  font-weight: 700;
  flex-shrink: 0;
}

/* Contact List */
.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list li strong {
  display: inline-block;
  min-width: 100px;
  color: #1a1a1a;
}

/* Footer */
footer {
  background-color: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  padding: 1.5rem 0;
  text-align: center;
}

footer p {
  font-size: 0.82rem;
  color: #777;
  margin-bottom: 0.25rem;
}

footer p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .status-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 1rem;
  }

  nav ul {
    gap: 0.75rem;
    flex-wrap: wrap;
  }
}
