/* ====================== GENERAL RESET & TYPOGRAPHY ====================== */
/* Affects: Entire page body, fonts, spacing, container, lists */
body {
    font-family: Arial, sans-serif;
    line-height: 1.7;
    background: #f9f9f9;
    color: #333;
    padding: 2rem;
}

.container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 0.8rem 0;
}

li strong {
    color: #FF8800;
}

/* ====================== NAVIGATION ====================== */
/* Affects: .policy-nav at the top of the page */
.policy-nav {
    background: #f8f9fa;
    padding: 12px 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    font-size: 14px;
    text-align: center;
}

.policy-nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #0077FF;
}

/* ====================== META, OPERATOR & SUMMARY ====================== */
/* Affects: All .meta texts, .operator, .centralized, .last-updated, .summary */
.meta {
    font-size: 12px;
    color: #888;
    margin: 0.2rem 0;
}

.operator {
    font-size: 13px;
    color: #666;
}

.centralized {
    font-size: 12px;
    color: #999;
}

.last-updated {
    font-size: 14px;
    color: #444;
    margin-top: 5px;
}

.summary-title {
    font-weight: bold;
    margin: 1rem 0 0.5rem;
}

.summary {
    padding-left: 1.2rem;
}

/* ====================== HEADER & SECTION TITLES ====================== */
/* Affects: h1, h2.section-title across the whole page */
h1 {
    font-size: 2rem;
    color: #0077FF;
    margin-bottom: 0.5rem;
}

.section-title {
    margin-top: 2rem;
    color: #0077FF;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.3rem;
}

/* ====================== FOOTER & HOME LINK ====================== */
/* Affects: Bottom footer and "Back to Homepage" link */
.main-footer {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 40px;
    color: #555;
}

.main-footer .company-name {
    font-size: 16px;
    color: #111;
}

.main-footer .copyright {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
}

.home-link {
    margin-top: 0.8rem;
    text-align: center;
}

.home-link a {
    display: inline-block;
    background: #0077FF;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.home-link a:hover {
    background: #0066dd;
}

/* ====================== ACCORDION STYLES ====================== */
/* Affects: All accordion headers and content across the page 
   (Master Legal Framework, Terms of Service, Privacy, Refund, Cookies, IP) */

.accordion-item {
    margin-top: 0.5rem;
}

.accordion-header {
    background: #f1f1f1;
    color: #333;
    border: none;
    width: 100%;
    text-align: left;
    padding: 14px 18px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.accordion-header:hover {
    background: #e0e0e0;
}

.accordion-header.active {
    background: #0077FF;
    color: #fff;
}

/* Icon: + when closed, chevron-up when open */
.accordion-header i {
    transition: transform 0.4s ease;
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 26px;
    text-align: center;
}

/* Accordion content - NO blue left bar, full content display */
.accordion-content {
    padding: 1.25rem 1.5rem;
    margin-top: 0.4rem;
    background: #fafafa;
    border-radius: 4px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s ease-in-out;
    
    /* Removed the blue left border to make it look more professional */
    /* border-left: 3px solid #0077FF;  <-- Commented out intentionally */
}

/* Nicer spacing inside accordion content */
.accordion-content p,
.accordion-content ul,
.accordion-content h3,
.accordion-content h4 {
    margin: 0.85rem 0;
}

/* Active state hover */
.accordion-header.active:hover {
    background: #0066dd;
}