* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.policies-section {
    padding: 0 15%;
    margin: 150px auto 100px auto;
    width: 100%;
    background-color: var(--bg-color);
}

.text h2 {
    font-size: var(--font-scale-lg);
    margin-top: 20px;
    margin-bottom: 20px;
}

.text p {
    font-size: var(--font-scale-base);
    line-height: 1.6;
    margin-bottom: 15px;
}

.text ul {
    list-style-type: none;
    padding: 0;
    font-size: var(--font-scale-base);
    line-height: 1.6;
    margin-bottom: 15px;
    text-decoration: none;
}

.policies-section .social-links a {
  color: inherit; /* Inherits the color from the parent element */
  text-decoration: none; /* Removes the underline */
}

.policies-section a {
  color: inherit; /* Inherits the text color from the parent element */
  text-decoration: none; /* Removes the underline */
}


@media (max-width: 992px) {
    body {
        padding-top: 30px;
    }
