.elementor-3323 .elementor-element.elementor-element-84c2d74{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-30f3903 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* Hero Banner */
.blog-hero {
  position: relative;
  text-align: center;
  color: white;
}

.blog-hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.5);
}

.blog-hero h1 {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: bold;
}

.blog-hero p {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
}

/* Blog Section */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 50px;
  max-width: 1200px;
  margin: auto;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #007BFF;
}

.blog-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #555;
}

.blog-content a {
  text-decoration: none;
  color: #fff;
  background: #007BFF;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s;
}

.blog-content a:hover {
  background: #0056b3;
}/* End custom CSS */