.section__header {
    display: flex;
    justify-content: space-between;
}

.section__header img{
    width: 80px;
    height: 80px;

}

.privacy-policy-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.privacy-policy-container h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: 600;
}

.privacy-policy-container h2 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.8em;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.privacy-policy-container section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.privacy-policy-container section:last-child {
    border-bottom: none;
}

.privacy-policy-container ul {
    list-style-type: disc;
    margin-left: 30px;
    padding-left: 10px;
}

.privacy-policy-container ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-policy-container p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.privacy-policy-container a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-policy-container a:hover {
    text-decoration: underline;
}
