/* Import Roboto font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  background-color: #fafafa;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 120px 20px;
  line-height: 1.65;
  color: #333;
}

/* Push content down below fixed navbar */
.get-started-guide {
  padding-top: 70px; /* Adjust this value to EXACT navbar height */
}

/* Blog post container styles */
.blog-post {
  max-width: 1100px; /* Wider content area */
  background: #fff;
  margin: 0 auto 60px auto;
  padding: 50px 50px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.title {
  font-weight: 700;
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #1e40af;
}

.intro {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 50px;
  color: #444;
}

.section-title {
  font-weight: 700;
  font-size: 2.3rem;
  margin-top: 60px;
  margin-bottom: 25px;
  color: #2563eb;
  border-bottom: 3px solid #b1c4ff;
  padding-bottom: 6px;
}

p {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: #555;
}

ul, ol {
  margin-bottom: 40px;
  padding-left: 28px;
  font-size: 1.15rem;
  color: #555;
}

li {
  margin-bottom: 14px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .blog-post {
    max-width: 90%;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 20px 10px;
  }
  .get-started-guide {
    padding-top: 80px; /* keep space for navbar on smaller screens */
  }
  .blog-post {
    padding: 25px 20px;
  }
  .title {
    font-size: 2.4rem;
  }
  .section-title {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  p, ul, ol {
    font-size: 1.05rem;
  }
}
