/* BandUp Legal Pages Styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap');

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #fff;
    color: #1E1E1E;
}

.legal-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 120px; /* Space for fixed header */
    padding-bottom: 80px;
}

h1.legal-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #000;
}

.last-update {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* Quick Summary Box */
.summary-box {
    background-color: #FFF5F7;
    border: 1px solid #FFD1DA;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #E23E57;
    font-weight: 800;
    font-size: 16px;
}

.summary-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.summary-link {
    color: #E23E57;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.summary-link:hover {
    text-decoration: underline;
}

/* Pills / Tabs */
.legal-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 30px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}
.legal-pills::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.legal-pill {
    background-color: #F3F4F6;
    color: #1E1E1E;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
}

.legal-pill:first-child {
    background-color: #E23E57;
    color: white;
}

/* Content Sections */
.legal-section {
    margin-bottom: 30px;
}

.legal-section-title {
    font-size: 20px;
    font-weight: 800;
    color: #E23E57;
    margin-bottom: 15px;
}

.legal-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.legal-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.list-icon {
    color: #E23E57;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Footer Section */
.legal-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.legal-footer-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.contact-support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #E23E57;
    font-weight: 800;
    text-decoration: none;
    font-size: 16px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    color: #ccc;
    font-size: 24px;
}

.copyright {
    display: block;
    text-align: center;
    font-size: 10px;
    color: #aaa;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
