.page-wrapper {
    display: flex;
    min-height: 100vh;
    gap: 20px;
}

.main-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #d3d3d3ff;
    box-shadow: inset 0 3px 10px rgba(106, 104, 104, 0.3);
    padding-left: 15px;
    padding-top: 15px;
}

.breadcrumbs-container {
    font-family: 'Roboto', Arial, sans-serif;
    padding: 20px;
    display: flex;
    align-items: center;
}

.breadcrumbs-container a {
    color: #585250;
    text-decoration: none;
    font-size: 16px;
}

.breadcrumbs-container a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 8px;
    color: #999;
}

.current {
    color: #585250;
    font-size: 16px;
    font-weight: 600;
}

.page-title {
    color: #4c4c4c;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 25px;
}

.page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-block {
    flex: 1;
    padding: 20px;
}

.two-column-layout {
    display: flex;
    gap: 30px;
    position: relative;
}

.activities-section {
    flex: 2;
}

.activities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activities-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
    font-size: 1rem;
    text-align: justify;
}

.activities-list li::before {
    content: "•";
    color: #4c4c4c;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

.history-section {
    flex: 2;
}

.history-content {
    padding: 20px 0;
}

.history-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.news-section {
    width: 300px;
    flex-shrink: 0;
    top: 50px;
    right: 25px;
    align-self: flex-start;
    margin-left: auto;
}

.content-block::-webkit-scrollbar {
    width: 8px;
}

.content-block::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.content-block::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.content-block::-webkit-scrollbar-thumb:hover {
    background: #999;
}

@media (max-width: 1200px) {
    .page-wrapper { gap: 15px; }
    .two-column-layout { gap: 20px; }
    .news-section {
        right: 15px;
    }
}

@media (max-width: 992px) {
    .page-wrapper { flex-direction: column; }
    .two-column-layout { 
        flex-direction: column;
        gap: 30px;
    }
    
    .news-section {
        width: 100%;
        position: static;
        margin-left: 0;
        right: 0;
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-title { font-size: 1.6rem; }
    .activities-list li { font-size: 0.95rem; }
    .history-content p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .page-title { font-size: 1.4rem; }
    .activities-list li { font-size: 0.85rem; }
    .history-content p { font-size: 0.85rem; }
}/* CSS updates */
