/************************************************************/
/*  DEDICATED STYLES FOR LEGAL PAGES (PRIVACY & TERMS)      */
/************************************************************/

/* We use a page-wrapper for consistent top/bottom spacing */
.page-wrapper {
    padding: 80px 20px;
}

.legal-container {
    max-width: 800px;
    /* This is the key to centering the box */
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    /* This sets the default text alignment inside the box */
    text-align: left;
    line-height: 1.7;
}

.legal-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #A63D40; /* Using color directly */
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.legal-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #333333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container p, 
.legal-container ul {
    margin-bottom: 15px;
}

.legal-container ul {
    padding-left: 20px;
}

.legal-container a {
    color: #A63D40;
    text-decoration: none;
    font-weight: 700;
}

.legal-container a:hover {
    text-decoration: underline;
}