/* ================================
   Privacy & Terms Page - Legal Style
================================ */

/* Base Body */
.privacy{
    font-family: "EB Garamond", serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #2c2c2c;
    background: #fdfcf9; /* Softer ivory-like background for legal feel */
    margin: 0;
    padding: 0;
}

/* Main container for centered content */
article.privacy {
    max-width: 900px;
    margin: 2rem auto 4rem auto;
    padding: 2.5rem 3rem;
    background-color: #ffffff;
    border-left: 6px solid #3b3a36; /* Dark charcoal for formal/legal feel */
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border-radius: 8px;
}

/* ================================
   Headings
================================ */
article.privacy h1 {
    font-family: "Cormorant Upright", serif;
    font-size: 2.8rem;
    color: #3b3a36;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #3b3a36;
    padding-bottom: 0.5rem;
}

article.privacy h2 {
    font-family: "Asul", sans-serif;
    font-size: 1.5rem;
    color: #3b3a36;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px dotted #c0a060; /* subtle gold dotted separator */
    padding-bottom: 0.3rem;
}

article.privacy h3 {
    font-family: "EB Garamond", serif;
    font-size: 1.2rem;
    color: #555;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* ================================
   Paragraphs
================================ */
article.privacy p {
    margin-bottom: 1rem;
    text-align: justify;
    color: #2c2c2c;
}

/* Numbered sections for clarity */
article.privacy ul {
    margin: 0.8rem 0 1.5rem 2rem;
    padding: 0;
    list-style-type: decimal;
    color: #2c2c2c;
}

article.privacy ul li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

/* Emphasis */
article.privacy p em {
    font-style: normal;
    font-weight: 600;
    color: #3b3a36; /* dark charcoal emphasis */
}

/* ================================
   Legal "callout" boxes
================================ */
.callout {
    background-color: #f7f6f3; /* softer ivory for sophistication */
    border-left: 4px solid #c0a060; /* subtle gold accent */
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #444;
    border-radius: 4px;
}

article.privacy ul.no-number {
    list-style-type: disc;  /* normal bullet */
    margin-left: 2rem;      /* spacing similar to other lists */
}