﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
.main-container {
    padding: 0px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-policy-container,
.terms-of-service-container {
    background-color: #303030;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #454545;
}

.privacy-policy-header,
.terms-of-service-header {
    text-align: center;
    margin-bottom: 40px;
}

.policy-subtitle,
.terms-subtitle {
    color: #C2C2C2;
    font-size: 16px;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.privacy-policy-content,
.terms-of-service-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
}

.policy-section,
.terms-section {
    margin-bottom: 30px;
}

.policy-section h2,
.terms-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.policy-section p,
.terms-section p {
    margin-bottom: 15px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #E0E0E0;
}

.policy-section ul,
.terms-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section li,
.terms-section li {
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    color: #E0E0E0;
}

.accent-link {
    color: #CD78FF;
    text-decoration: none;
    transition: all 0.2s ease;
}

.accent-link:hover {
    text-decoration: underline;
}

.last-updated {
    margin-top: 40px;
    text-align: center;
    color: #888;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .privacy-policy-container,
    .terms-of-service-container {
        padding: 25px;
    }
    
    .policy-section h2,
    .terms-section h2 {
        font-size: 20px;
    }
    
    .policy-section p,
    .terms-section p,
    .policy-section li,
    .terms-section li {
        font-size: 15px;
    }
}
