/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  padding: 20px;
  background-color: #1c3c59;
  color: white;
}

.logo {
  font-size: 2.5rem;
  color: white;
}

/* Intro Section */
.intro {
  background-color: #ff7043;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.tagline {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Blog Section */
.blog-list {
  padding: 50px 20px;
  background-color: #fff;
}

.blog-list h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1c3c59;
}

.blog-post {
  background-color: #f4f4f4;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-post h3 a {
  color: #1c3c59;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

.blog-post h3 a:hover {
  color: #ff7043;
}

.blog-post p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 20px;
}

.read-more {
  text-decoration: none;
  color: #ff7043;
  font-weight: 700;
}

.read-more:hover {
  color: #1c3c59;
}

/* Footer Styles */
.site-footer {
  background-color: #1c3c59;
  color: white;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: left;
}

.footer-section {
  flex: 1;
  padding: 20px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ff7043;
}

.footer-section p {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-section a {
  color: white;
  text-decoration: none;
  margin-right: 10px;
}

.footer-section a:hover {
  color: #ff7043;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.footer-bottom p {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  margin: 0 5px;
}

.footer-links a:hover {
  color: #ff7043;
}
