/* Content section styles */

.content-section {
    padding: 2rem 0;
}

.content-section h2,
.content-section h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-section p {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--primary-variant);
    margin-bottom: 1rem;
}

/* List styles */
.content-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--primary-variant);
    margin-bottom: 0.5rem;
}

/* Link styles */
.content-section a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--secondary-variant);
    text-decoration: underline;
}

/* Blockquote styles */
.content-section blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--primary-variant);
}

.content-section blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Image styles */
.content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Table styles */
.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.content-section th,
.content-section td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--light-border);
}

.content-section th {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    background-color: var(--light-surface);
    color: var(--primary-color);
}

/* Responsive content */
@media (max-width: 768px) {
    .content-section {
        padding: 1rem 0;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .content-section h3 {
        font-size: 1.5rem;
    }
}