/* styles/tnc.css */
/* Based on dashboard.css styles, updated with no box-shadow and theme color rgb(255, 134, 74) */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f8;
    color: #333;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
}

header {
    background-color: #ff864a;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-arrow {
    color: white;
    text-decoration: none;
    font-size: 24px;
    margin-right: 15px;
}

header h1 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

main {
    padding: 15px;
}

.tnc-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.tnc-section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgb(255, 134, 74);
}

.tnc-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px;
}

.tnc-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
}

.tnc-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 10px;
}

.tnc-section ul li {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 5px;
}