/* Terms & Conditions Page Specific Styles */
.terms-body {
    background-color: #0d1117;
    color: #e6edf3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.terms-header {
    padding: 1.5rem 0;
    background-color: #0d1117;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-main {
    padding: 4rem 0;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.terms-container h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
    color: #ffffff;
}

.last-updated {
    color: #8b949e;
    font-size: 1rem;
    margin-bottom: 4rem;
    display: block;
    text-align: left;
}

/* Completely remove all borders from sections */
.terms-section {
    margin-bottom: 3.5rem;
    padding-bottom: 0;
    border: none;
    border-bottom: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

/* Ensure headings have no borders and are left-aligned */
.terms-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 4rem;
    color: #ffffff;
    padding-bottom: 0;
    border: none;
    border-bottom: none;
    border-top: none;
    border-left: none;
    border-right: none;
    text-align: left;
    background: transparent;
}

.terms-section p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #e6edf3;
    font-size: 1.125rem;
    text-align: left;
    border: none;
}

.terms-list {
    margin: 1.75rem 0 2.5rem 2rem;
    text-align: left;
}

.terms-list li {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #e6edf3;
    font-size: 1.125rem;
    padding-left: 0.5rem;
    text-align: left;
}

.terms-list li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Explicitly override any blue colors */
.terms-body a,
.terms-body a:hover,
.terms-body a:visited,
.terms-body a:focus,
.terms-body a.active,
.terms-body svg,
.terms-body .icon,
.terms-body *::before,
.terms-body *::after {
    color: inherit !important;
    border-color: transparent !important;
    background: transparent !important;
    stroke: currentColor !important;
    box-shadow: none !important;
}

/* Remove all border styles */
.terms-body *,
.terms-body h1,
.terms-body h2,
.terms-body h3,
.terms-body p,
.terms-body div,
.terms-body section {
    border-bottom: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

/* Override all active links */
.terms-body footer a.active,
.terms-body .footer-column a.active,
.footer-column a.active {
    color: #e6edf3 !important;
    border: none !important;
    border-bottom: none !important;
    background: transparent !important;
    font-weight: 500;
}

/* Footer section */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 0.75rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-column a {
    font-size: 1.1rem;
    color: #e6edf3;
    margin-bottom: 1rem;
    display: block;
}

/* Disclaimer of Warranties and Limitation of Liability sections */
.terms-section:nth-of-type(9) p,
.terms-section:nth-of-type(10) p {
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
    text-align: left;
}

/* Responsive styles */
@media (max-width: 900px) {
    .terms-container h1 {
        font-size: 2.8rem;
    }
    
    .terms-section h2 {
        font-size: 1.75rem;
    }
    
    .terms-section h3 {
        font-size: 1.35rem;
    }
    
    .terms-section p,
    .terms-list li {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .terms-container h1 {
        font-size: 2.2rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-list {
        margin-left: 1.5rem;
    }
} 