@import url('index.css');

.container {
    width: 100%;
    max-width: 75%;
    min-height: 80vh;
    margin: 0 auto;
    padding: var(--spacing-md);
}

@media (max-width: 640px) {
    .container {
        max-width: 100%;
    }
}

.updated-date {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.policy-intro {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
    color: #666666;
}

.company-intro {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.section-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    text-transform: uppercase;
}

.subsection-title {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.section-text {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xs);
    font-weight: 300;
    color: #666666;
}

ol {
    list-style-type: decimal;
    padding-left: 30px;
}

li {
    margin-bottom: var(--spacing-xs);
}