/* Stride App - Legal Documents Styling */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #212121;
  background-color: #F5F5F5;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid #FF5722;
}

.app-name {
  font-size: 32px;
  font-weight: bold;
  color: #FF5722;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 14px;
  color: #757575;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 28px;
  color: #212121;
  margin-bottom: 16px;
  margin-top: 32px;
}

h2 {
  font-size: 22px;
  color: #424242;
  margin-top: 32px;
  margin-bottom: 16px;
}

h3 {
  font-size: 18px;
  color: #616161;
  margin-top: 24px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #424242;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #424242;
}

.last-updated {
  font-size: 14px;
  color: #757575;
  font-style: italic;
  margin-bottom: 32px;
  text-align: center;
}

.contact-info {
  background-color: #FFF3F0;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #FF5722;
  margin-top: 40px;
}

.contact-info h3 {
  margin-top: 0;
  color: #FF5722;
}

.back-link {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 24px;
  background-color: #FF5722;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.back-link:hover {
  background-color: #E64A19;
}

.links-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.doc-link {
  display: block;
  padding: 24px;
  background-color: white;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  text-decoration: none;
  color: #212121;
  transition: all 0.3s;
}

.doc-link:hover {
  border-color: #FF5722;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.2);
}

.doc-link h2 {
  margin: 0 0 8px 0;
  color: #FF5722;
}

.doc-link p {
  margin: 0;
  color: #757575;
  font-size: 14px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .container {
    padding: 24px;
  }

  .app-name {
    font-size: 24px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }
}
