/*
* File: ./styles.css
* Last Modified: October 23, 2025
* Description: Stylesheet for the PhishDetective Privacy Policy page.
*              Defines color variables, typography, layout containers, and
*              section styling.
*/

/* --- Table of Contents --- */
/*
* 1. Color Variables
* 2. Base Styles
* 3. Container
* 4. Page Title
* 5. Section Blocks
* 6. Typography and Links
* 7. Footer
*/


/* =========================1. Color Variables================== */
:root {
  --navy-blue: #1e3a8a;
  --dark-blue: #062644;
  --light-gray: #f7f9fc;
  --text-gray: #333;
}


/* =========================2. Base Styles================== */
body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-blue);
  line-height: 1.6;
}


/* =========================3. Container================== */
.terms-container {
  max-width: 900px;
  margin: 50px auto 40px; /* space from top */
  padding: 20px 25px;
  text-align: left;
}


/* =========================4. Page Title================== */
.terms-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 25px;
  text-align: center;
}


/* =========================5. Section Blocks================== */
.terms-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.terms-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
}


/* =========================6. Typography and Links================== */
.terms-section p {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.terms-section a {
  color: var(--dark-blue);
  text-decoration: underline;
}


/* =========================7. Footer================== */
footer {
  text-align: center;
  margin-top: 40px;
  color: #555;
  font-size: 0.9rem;
}

