/* Styles specific to the terms & conditions page */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2em;
    background-color: #FEFEFE;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.terms-content h1 {
    color: #17112B;
    margin-bottom: 1em;
    font-weight: 600;
}

.terms-content h2 {
    color: #17112B;
    margin-top: 1.5em;
    font-weight: 600;
    font-size: 1.5em;
}

.terms-content p {
    color: #17112B;
    line-height: 1.6;
}

.terms-content a {
    color: #54DE62;
    text-decoration: none;
}

.terms-content a:hover {
    text-decoration: underline;
}

.terms-content ul {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.terms-content li {
    margin-bottom: 0.5em;
}

.back-button {
    display: inline-flex;
    align-items: center;
    margin-top: 2em;
    font-weight: 500;
    color: #17112B;
}

.back-button i {
    margin-right: 0.5em;
}

.back-button:hover {
    color: #54DE62;
}

/* Override for main page body */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Content wrapper */
.page-wrapper {
    flex: 1;
    padding-top: 2em;
    padding-bottom: 2em;
    position: relative;
    z-index: 2;
}