* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

.container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Blog Content */
.content img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.blog-post h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #800000;
}

.blog-post h2 {
  margin: 20px 0 10px;
  font-size: 1.4rem;
  color: #800000;
}

.blog-post p {
  margin-bottom: 15px;
  text-align: justify;
}
.styled-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.styled-list li {
  background: #f9f9f9;
  padding: 15px;
  margin-bottom: 12px;
  border-left: 5px solid #800000; /* Maroon accent */
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.styled-list span {
  font-weight: bold;
  color: #800000; /* Maroon for titles */
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.styled-list p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

.social-link {
  font-weight: bold;
  text-decoration: none;
  padding: 2px 5px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.social-link.instagram {
  color: #E4405F; /* Instagram Pink */
}

.social-link.facebook {
  color: #1877F2; /* Facebook Blue */
}

.social-link.linkedin {
  color: #0A66C2; /* LinkedIn Blue */
}

.social-link.youtube {
  color: #FF0000; /* YouTube Red */
}

.social-link:hover {
  background: #f1f1f1;
  text-decoration: underline;
}


/* Responsive */
@media (max-width: 768px) {
  .styled-list li {
    padding: 12px;
  }
  .styled-list span {
    font-size: 1rem;
  }
}

/* Sidebar */
.sidebar {
  padding: 20px;
  background: #f9f9f9;
  border-left: 2px solid #eee;
  border-radius: 8px;
}

.sidebar h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #0073e6;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #0073e6;
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }
  .sidebar {
    border-left: none;
    border-top: 2px solid #eee;
    margin-top: 20px;
  }
}
