/* =========================
   TERMS & CONDITIONS STYLES
   ========================= */

/* Page background */
body {
    background-color: #f5f7fa;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Main container */
.policy-page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Header section */
.policy-header {
    text-align: center;
    margin-bottom: 35px;
}

.policy-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a4f7a; /* Primary heading color */
    margin-bottom: 10px;
}

.policy-header p {
    font-size: 0.95rem;
    color: #666;
}

/* Section headings */
.policy-page h2 {
    font-size: 1.4rem;
    color: #1a4f7a;
    margin-bottom: 12px;
    border-left: 4px solid #1a4f7a;
    padding-left: 10px;
}

/* Paragraphs */
.policy-page p {
    font-size: 1rem;
    margin-bottom: 18px;
}

/* Lists */
.policy-page ul {
    margin: 0 0 18px 20px;
    padding: 0;
}

.policy-page li {
    margin-bottom: 10px;
}

/* Links */
.policy-page a {
    color: #0073e6;
    text-decoration: none;
    font-weight: 500;
}

.policy-page a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .policy-page {
        padding: 20px;
        margin: 20px auto;
    }

    .policy-header h1 {
        font-size: 1.8rem;
    }

    .policy-page h2 {
        font-size: 1.2rem;
    }
}
