main.container {
    padding-top: 120px; 
    padding-bottom: 60px; 
}

.privacy-content {
    background-color: var(--card-bg);
    padding: 40px 50px; 
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.privacy-content h1 {
    font-size: 2.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}

.privacy-content h2 {
    font-size: 2.1em;
    color: var(--text-color-light);
    margin-top: 40px; 
    margin-bottom: 20px;
}

.privacy-content h3 {
    font-size: 1.6em;
    color: var(--text-color-light);
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content h4 {
    font-size: 1.25em;
    color: var(--primary-color); 
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 700;
}

.privacy-content p {
    color: var(--text-color-dark); 
    margin-bottom: 20px; 
    line-height: 1.7; 
}

.privacy-content ul {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: var(--text-color-dark);
}

.privacy-content ul li {
    padding-left: 5px;
}

.privacy-content ul li p {
    margin-bottom: 5px;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.privacy-content a:hover {
    color: #ff202c; 
    text-decoration: underline;
}