* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
}

h1 {
    color: #000000;
    font-size: 42px;
}

h2 {
    color: #6a0dad;
    font-size: 28px;
    margin-bottom: 15px;
}

h3 {
    color: #4b0082;
    background: #e6e6fa;
    padding: 12px;
    border-left: 4px solid #9370db;
    margin-bottom: 20px;
}

#header {
    background-color: #6a0dad;
    padding: 20px 40px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#logo, #menu {
    padding: 12px 0;
    text-align: center;
}

#header a:link, #header a:visited {
    color: #ffffff;
    padding: 10px 15px;
    margin-right: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#header a:hover {
    color: #6a0dad;
    background: #ffffff;
    text-decoration: none;
}

.white {
    color: #ffffff;
    font-weight: bold;
}

#content {
    width: 95%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0;
}

#posts {
    width: 72%;
    float: left;
    padding-right: 30px;
}

.post {
    margin-bottom: 35px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.data-post {
    font-size: 14px;
    color: #777;
    border-bottom: 1px solid #e6e6fa;
    padding-bottom: 12px;
    margin-bottom: 20px;
    display: block;
}

.img-post {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.post p {
    margin-bottom: 20px;
    color: #555;
}

.post a {
    color: #9370db;
    font-weight: bold;
    transition: color 0.3s;
}

.post a:hover {
    color: #6a0dad;
    text-decoration: none;
}

#right-side {
    width: 26%;
    float: right;
}

.content-right {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.post-right {
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.5;
    color: #555;
}

.post-right:last-child {
    border-bottom: none;
}

.post-right a {
    color: #6a0dad;
    font-weight: bold;
}

.post-right a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    #posts, #right-side {
        width: 100%;
        float: none;
        padding-right: 0;
    }
    
    .post, .content-right {
        padding: 20px;
    }
    
    #header {
        padding: 15px 20px;
        text-align: center;
    }
    
    #logo h1 {
        font-size: 32px;
    }
}