@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body{
  font-family: 'Quicksand', sans-serif;
  max-width: 1840px;
  margin: 0 auto;
}

section.title-section {
    margin-bottom: 20px;
    padding-top: 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
}

.title-section h1 {
    font-size: 2rem;
    color: #333333;
    margin: 0;
    font-weight: 400;
}


  /* Blog Section Styling */
  .blog-section {
    margin: 0 auto;
    padding: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;

}

.blog-title {
    text-align: center;
    font-size: 3rem;
    text-transform: uppercase;
  letter-spacing: 3px;
    color: #152c47;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    
}


.blog-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    /* Positions the line at the bottom of the title */
    left: 12.5%;
    /* Centers the line by starting at 12.5% (100% - 75%) */
    width: 75%;
    /* Line spans 75% of the title */
    height: 4px;
    /* Thickness of the line */
    background-color: #be1823;
    /* Color of the underline */
    border-radius: 2px;
    /* Rounded corners for a smoother appearance */
}

.blog-description {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
