.header {
  background: linear-gradient(
    90deg,
    rgba(248, 102, 196, 0.6) 0%,
    rgba(255, 235, 235, 0.4) 100%
  );
  color: white;
  padding: 60px 30px;
  text-align: center;
}
.header h1 {
  margin: 0;
  font-size: 36px;
  font-family: "Roboto", sans-serif;
}
.container {
  max-width: 1000px;
  margin: 40px auto;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.image-placeholder {
  width: 100%;
  height: 300px;
  background: #ddd;
  border-radius: 8px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #666;
}
.section {
  margin-bottom: 30px;
}
.section h2 {
  font-size: 22px;
  margin-bottom: 10px;
  background: linear-gradient(
    90deg,
    rgba(248, 102, 196, 0.6) 0%,
    rgba(255, 235, 235, 0.4) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Open Sans", sans-serif;
}
.section p,
.section ul {
  line-height: 1.7;
  color: #555;
  font-family: "Roboto", sans-serif;
}
ul {
  padding-left: 20px;
}
.footer-col ul {
  padding-left: 0px;
}
.section ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .container {
    padding: 20px;
    margin: 20px;
  }
}

.blog_section {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
	  margin-top: 50px;
    }

    .blog_card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .blog_card:hover {
      transform: translateY(-5px);
    }

    .blog_image {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .blog_content {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .blog_date {
      font-size: 0.85rem;
      color: #f866c4;
      margin-bottom: 0.5rem;
    }

    .blog_title {
      font-size: 1.2rem;
      margin: 10px 0px 0px 0px;
      color: #333;
    }

    .blog_snippet {
      font-size: 0.95rem;
      color: #666;
    margin: 5px 0 10px 0;
      flex-grow: 1;
    }

    .blog_read_more {
      margin-top: 1rem;
      align-self: flex-start;
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
      background-color: #f866c4;
      color: white;
      border: none;
      border-radius: 6px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .blog_read_more:hover {
      background-color: #0056b3;
    }

.blog_container {
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem;
      background-color: #fff;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
	  margin-top: 50px;
    }

    .blog_container img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 2rem;
    }

    .blogtitle {
      font-size: 2.2rem;
      margin: 0px;
	  line-height: 1.5em;
    }

    .blogdate {
      color: #f866c4;
      font-size: 0.95rem;
      margin: 15px 0 0 0;
    }
	.blog_post h3 {
		    font-size: 20px;
    margin: 30px 0 0 0;
	color: #f866c4;
	}

    .blog_post p {
          margin: 15px 0 0 0;
      font-size: 15px;
    }
.location-text {
    font-family: Tahoma;
    font-size: 14px;
    color: #000;
    line-height: 25px;
    padding: 0 0 0 0px;
    margin: 0 0 0 0px;
    text-decoration: none;
}
@media (max-width: 767px) {
.header h1 {
    font-size: 22px;
}
.blog_section {
    max-width: 100%;
    padding: 0 15px;
}
.blog_image {
    height: 100%;
}
.blog_container {
    max-width: 90%;
padding: 1rem;
}
.blog_container img {
    height: 100%;
}
.blogtitle {
    font-size: 1.4rem;
}
}