* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0;
    transition: background-color 1s ease-in-out;
 
}
body {
    font-family: 'Inter', 'Kanit', sans-serif;
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: #f8fafc;			
    scroll-behavior: smooth;
}
body.dark-theme  {
    background-color: var(--color-bg-readable);
    color: var(--color-text-warm-bright);				
}
.policy-head-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #1B5E20 100%);
    color: var(--color-bg-warm);		
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
}
body.dark-theme .policy-hero {
    background: linear-gradient(135deg, #ffa32a 0%, #bd3f00 100%);
    color: var(--color-text-cream-orange);		
}
.policy-hero h1 { font-size: 3rem; font-weight: 600; }
.policy-hero p { opacity: 0.8; margin-top: 10px; }

.policy-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    margin-bottom: 100px;
}

.policy-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.policy-sidebar ul { list-style: none; border-left: 2px solid #e2e8f0; }
.policy-sidebar li { margin-bottom: 10px; }

.policy-sidebar a {
    text-decoration: none;
    color: #64748b;
    padding: 5px 20px;
    display: block;
    transition: 0.3s;
    font-weight: 500;
}
body.dark-theme .policy-sidebar a {
    color: var(--color-text-warm-bright);				                			
}
.policy-sidebar a:hover, .policy-sidebar a.active {
    color: var(--color-text-heading-eco);		
    border-left: 2px solid var(--color-text-subhead-green);	
    margin-left: -2px;
}
body.dark-theme .policy-sidebar a:hover, .policy-sidebar a.active {
    border-left: 2px solid var(--color-btn-orange-earth);
}
.policy-content section {
    background-color: var(--color-bg-primary);		
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    margin-bottom: 30px;
}
body.dark-theme .policy-content section {
    background: none;
}
.policy-content h2 { margin-bottom: 20px;  color: var(--color-text-secondary); }
.policy-content p { color: #64748b; margin-bottom: 15px; }
body.dark-theme .policy-content h2 {
    color: var(--color-btn-orange-dark);		
}
body.dark-theme .policy-content p {
    color: var(--color-text-warm-bright);		
}
.info-card {
    background: #ecfdf5;
    border-left: 4px solid var(--color-text-subhead-green);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    margin: 20px 0;
}
body.dark-theme .info-card {
    background: none;
    border-left: 4px solid var(--color-btn-orange-earth);
    /* border-bottom: 1px solid var(--color-btn-orange-earth); */
}
.info-card i {
    color: var(--color-btn-eco-action); 
    margin-bottom: 10px;
}
body.dark-theme .info-card i {
    color: var(--color-btn-orange-earth);		
}

.data-1 {
    margin-bottom: 15px; 
    border-left: 4px solid #2ecc71; 
    padding: 15px; 
    background: #f9f9f9;
}
.data-2 {
    border-left: 4px solid #3498db; 
    padding: 15px; 
    background: #f9f9f9;
}

@media (max-width: 768px) {
    .policy-container { grid-template-columns: 1fr; }
    .policy-sidebar { display: none; } 
}