:root {
    --wd-primary-color: #258412;
    --wd-secondary-color: #4ECDC4;
    --wd-heading-color: #242424;
    --wd-text-color: #292929;
    --wd-light-text-color: #757575;
    --wd-background-light: #ffffff;
    --wd-background-grey: #f9f9f9;
    --wd-border-color: rgba(0, 0, 0, 0.1);
    --wd-border-radius: 8px;
    --wd-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --white: #FFFFFF;
}

/* Page Title Section */
.policy-title-section {
    padding: 120px 0 60px;
    background: var(--wd-background-grey);
    text-align: center;
    color: var(--white);
}

.policy-title-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.policy-title-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    color: var(--wd-text-color);
}

/* Policy Content Section */
.policy-content-section {
    padding: 50px 0;
    background-color: var(--wd-background-light);
}

.policy-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    position: relative;
}

/* Table of Contents Sidebar */
.policy-toc {
    position: sticky;
    top: 100px;
    align-self: start;
    background-color: var(--wd-background-grey);
    border-radius: var(--wd-border-radius);
    padding: 30px;
    box-shadow: var(--wd-box-shadow);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.policy-toc h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--wd-heading-color);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--wd-border-color);
}

.policy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-toc li {
    margin-bottom: 12px;
}

.policy-toc a {
    color: var(--wd-text-color);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.policy-toc a:hover {
    color: var(--wd-primary-color);
}

/* Policy Content */
.policy-content {
    background-color: var(--white);
    border-radius: var(--wd-border-radius);
    padding: 40px;
    box-shadow: var(--wd-box-shadow);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--wd-heading-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--wd-border-color);
}

.policy-section h3 {
    font-size: 1.4rem;
    color: var(--wd-heading-color);
    margin: 30px 0 15px;
}

.policy-section p {
    color: var(--wd-text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section ul, 
.policy-section ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-section li {
    color: var(--wd-text-color);
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-section a {
    color: var(--wd-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.policy-section a:hover {
    text-decoration: underline;
}
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}
/* Responsive Styles */
@media (max-width: 992px) {
    .policy-wrapper {
        grid-template-columns: 1fr;
    }
    
    .policy-toc {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
    
    .policy-title-content h1 {
        font-size: 2.5rem;
    }
    .policy-toc {
    max-height: inherit;
    }
    .policy-wrapper {
        gap: 0px;
    }
}

@media (max-width: 768px) {
    .policy-title-section {
        padding: 100px 0 50px;
    }
    
    .policy-title-content h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 30px 25px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .policy-title-section {
        padding: 120px 0 40px;
    }
    
    .policy-title-content h1 {
        font-size: 1.75rem;
    }
    
    .policy-title-content p {
        font-size: 0.9rem;
    }
    
    .policy-content {
        padding: 25px 20px;
    }
    
    .policy-toc {
        padding: 20px;
    }
} 