/* Start custom CSS for html, class: .elementor-element-93698bf *//* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f8ff;
  color: #222;
  padding: 20px;
}

a {
  color: #0074cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
}

/* Title */
.container h1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Blog Layout */
.blog-layout {
  display: flex;
  gap: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

/* Sidebar */
.sidebar {
  flex: 1;
  border-right: 1px solid #eee;
  padding-right: 20px;
}

.sidebar h2 {
  font-size: 16px;
  margin-bottom: 15px;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar a {
  color: #0074cc;
  font-size: 15px;
}

/* Main Content */
.main-content {
  flex: 3;
  padding-left: 20px;
}

.main-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.main-content h3 {
  font-size: 18px;
  color: #0074cc;
  margin-top: 20px;
}

.main-content h4 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.main-content p {
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
}

/* Promo Image */
.promo-image {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-layout {
    flex-direction: column;
  }

  .sidebar {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .main-content {
    padding-left: 0;
  }
}/* End custom CSS */