/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Bluesky-inspired colors */
:root {
  --bluesky-blue: #0085ff;
  --bluesky-light-blue: #e8f5ff;
}

body {
  color: #333;
  font-family: 'Open Sans', sans-serif;
}

a {
  color: var(--bluesky-blue);
}

a:hover {
  color: #006acc;
}

.footer {
  background-color: var(--bluesky-light-blue) !important;
}

/* Add some spacing for the main content */
main {
  margin-bottom: 60px;
}

/* Additional spacing for paragraphs */
.lead {
  line-height: 1.6;
}

/* Privacy Policy Styles */
.privacy-policy {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.privacy-policy h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--bluesky-blue);
}

.privacy-policy h2.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.privacy-policy h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #34495e;
}

.privacy-policy p {
  margin-bottom: 1.2rem;
}

.privacy-policy ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.privacy-policy li {
  margin-bottom: 0.8rem;
}

.privacy-policy strong {
  font-weight: 600;
}

.privacy-policy address {
  padding: 1.5rem;
  background-color: var(--bluesky-light-blue);
  border-radius: 8px;
}

.privacy-policy a {
  color: var(--bluesky-blue);
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}
