body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #e0f7e0, #f3fdf3);
    color: #333;
}

main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #0150b1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.description {
    flex: 1 1 65%;
    text-align: justify;
    padding: 20px;
    border: 1px solid #0150b1;
    border-radius: 8px;
    background-color: #f9fff9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.description:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.related-posts {
    /* flex: 1 1 30%; */
    padding: 20px;
    border-left: 4px solid #0150b1;
    background-color: #d5dbf7;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-posts:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.related-posts h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0150b1;
}

.related-posts ul {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 10px;
}

.related-posts a {
    text-decoration: none;
    color: #0150b1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-posts a:hover {
    color: #0150b169;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .related-posts {
        border-left: none;
        border-top: 4px solid #28a745;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
}