    .main-wrapper {

        background-color: white;
        max-width: 1300px;
        margin: auto;
        padding: 150px 0;
    }
    
    .content-container {

        padding: 20px;
    }
    .content-box-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
    }
    .content-box {
        width: calc(50% - 10px);
        background: #f8f8f8;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: left;
        position: relative;
    }
    .content-box img {
        width: 100%;
        height: 180px;
        border-radius: 8px;
    }
    .content-box h3 {
        margin: 15px 0;
        font-size: 20px;
        color: #044656;
        line-height: 1.4;
    }
    .content-box p {
        color: #666;
        font-size: 14px;
    }
    .read-more-btn {
        display: inline-block;
        margin-top: 10px;
        padding: 8px 8px;
        font-weight: bold;
        background: transparent;
        color: #044656;
        text-decoration: none;
        border-radius: 5px;
    }
    .read-more-btn:hover {
        color: #AD8B3A;
    }
    .content-date {
        display: flex;
        align-items: left;
        justify-content: left;
        margin-top: 20px;
        color: #555;
        font-size: 14px;
    }
    .content-date i {
        margin-right: 5px;
        color: #044656;
    }
    @media (max-width: 768px) {
        .main-wrapper {
            flex-direction: column;
        }
        .side-navigation {
            width: 100%;
            border-right: none;
            border-bottom: 2px solid #ddd;
        }
        .content-container {
            width: 100%;
            padding:15px 0px;
        }
        .content-box {
            width: 100%;
        }
    }
    