/* Typography and Global Styles */
body, h1, , p {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

h2 {
  margin: 40px 0 10px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.blog-header {
  background: #0073e6;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.blog-header h1 {
  font-size: 2rem;
}

/* Blog Post Styles */
.blog-post {
  background: #fff;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-post h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.blog-post .meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.featured-image,
.inline-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.blog-post section {
  margin-bottom: 20px;
}

.blog-post h2 {
  font-size: 1.5rem;
  color: #0073e6;
  margin-bottom: 10px;
}

.blog-post p {
  margin-bottom: 10px;
}

/* Two Columns Layout */
.two-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.two-columns .column {
  flex: 1;
}

.two-columns .column.wide {
  flex: 2;
}

/* Three Columns Layout */
.three-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.three-columns .column {
  flex: 1;
}

/* Call-to-Action (CTA) Section */
.cta {
  background: #00694f;
  color: #fff;
  padding: 20px 20px 50px;
  text-align: center;
  margin: 100px 0 0px;
}

.cta .btn {
  display: inline-block;
  background: #fff;
  color: #00694f;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 10px;
}

.cta .btn:hover {
  background: #005bb5;
  color: #fff;
}

/* Footer */
.blog-footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}

.blog-footer p {
  font-size: 0.9rem;
}

/* Additional Styles */
.description {
  font-size: 1.1rem;
  color: #555;
  margin: 10px 0 20px;
  line-height: 1.6;
}
