


/* --- General Content Page Styles --- */
.content-page {
    padding-top: 100px; 
    padding-bottom: 60px;
    background-color: #121212; 
    color: #e0e0e0; 
}

.content-page .container {
    max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.content-page h1 {
    font-size: 2.8em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: left; 
}

.content-page .last-updated {
    font-size: 0.9em;
    color: #a0a0a0;
    margin-bottom: 30px;
    text-align: left; 
}

.content-page h2 {
    font-size: 1.8em;
    font-weight: 600;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333333; 
}

.content-page h3 {
    font-size: 1.4em;
    font-weight: 600;
    color: #f0f0f0;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-page h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: #e8e8e8;
    margin-top: 25px;
    margin-bottom: 10px;
}

.content-page p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #c7c7c7; 
}

.content-page ul,
.content-page ol {
    margin-left: 20px; 
    margin-bottom: 20px;
    padding-left: 20px; 
}

.content-page ul li,
.content-page ol li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #c7c7c7;
}

.content-page ul {
    list-style-type: disc;
}

.content-page ol {
    list-style-type: decimal;
}

.content-page a {
    color: #00A3FF; 
    text-decoration: none;
    font-weight: 500;
}

.content-page a:hover {
    text-decoration: underline;
    color: #4Dc0FF;
}

.content-page strong, .content-page b {
    font-weight: 600;
    color: #ffffff; 
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-page {
        padding-top: 80px;
    }
    .content-page h1 {
        font-size: 2.2em;
    }
    .content-page h2 {
        font-size: 1.6em;
    }
    .content-page h3 {
        font-size: 1.3em;
    }
    .content-page p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .content-page h1 {
        font-size: 1.9em;
    }
    .content-page h2 {
        font-size: 1.4em;
    }
    .content-page h3 {
        font-size: 1.2em;
    }
} 