/* General container styling */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #333333; /* Dark grey for text */
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Heading styling */
.policy-heading-1 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #333333; /* Dark grey for headings */
    margin-bottom: 30px;
}

.policy-heading-2 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #333333; /* Dark grey for subheadings */
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-heading-3 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #333333; /* Dark grey for smaller headings */
    margin-top: 30px;
    margin-bottom: 15px;
}

/* List styling */
.policy-list {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 20px;
}

.policy-list li {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 300; /* Lato Light for body text */
    color: #333333; /* Dark grey for body text */
}

.policy-list-ordered {
    padding-left: 40px;
    margin-bottom: 20px;
}

.policy-list-ordered li {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 300;
    color: #333333; /* Dark grey for body text */
}

/* Paragraph styling */
.policy-container p {
    font-size: 16px;
    font-weight: 300;
    color: #333333; /* Dark grey for paragraph text */
    margin-bottom: 20px;
}

/* Note box styling */
.policy-note {
    background-color: #f2f2f2;
    padding: 15px;
    border-left: 5px solid #333333; /* Dark grey for note highlight */
    margin-top: 20px;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 16px;
    font-weight: 300;
    color: #333333;
}

/* Link styling */
.policy-container a {
    font-weight: 700;
    color: #007bff; /* Blue for links */
    text-decoration: none;
}

.policy-container a:hover {
    text-decoration: underline;
}

/* Bold text */
.policy-container strong {
    font-weight: 700;
    color: #333333; /* Dark grey for bold text */
}
