@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* Main Wrapper */
.privacy-wrapper {
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    gap: 40px;
}

/* Sidebar for Table of Contents */
.sidebar {
    flex: 1;
    position: sticky;
    top: 20px;
    height: fit-content;
    padding: 20px;
    background: #f5f5f7;
    border-radius: 10px;
}

.sidebar h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar a {
    text-decoration: none;
    color: #007aff;
}

.sidebar a:hover {
    text-decoration: underline;
}

/* Privacy Content */
.privacy-content {
    flex: 3;
}

.privacy-content section {
    margin-bottom: 40px;
}

.privacy-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.privacy-content p,
.privacy-content ul {
    font-size: 1rem;
    color: #6e6e73;
    line-height: 1.6;
}

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

/* Footer */
.footer {
    width: 100%;  /* Extend full width */
    background: rgb(245, 245, 247); /* Keep the gray background */
    padding: 20px 5%; /* Add spacing on the sides */
    font-size: 0.75rem;
    color: rgb(110, 110, 115);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid rgb(208, 208, 208);
}

.footer a {
    text-decoration: none;
    color: rgb(110, 110, 115);
}

.footer a:hover {
    text-decoration: underline;
}

.footer-right {
    text-align: right;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .privacy-wrapper {
        flex-direction: column;
    }

    .sidebar {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }
}
