body{
  font-family: 'Open Sans',sans-serif;
}
.blog-not-found {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
  }
  
  .not-found-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #444;
  }
  
  .blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  .blog-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #1e266d;
  }
  
  .blog-description {
    color: #444;
    line-height: 1.6;
  }
  
  .blog-paragraph {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .blog-highlight {
    font-weight: 600;
    color: #222;
    font-size: 1.05rem;
    margin-right: 0.25rem;
  }
  .blog-section {
    margin: 24px 0;
  }
  
  .blog-subheading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
  }
  
  .increase {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e266d;
  }

  .info-box {
    border: 1px solid #eee;
    text-align: center;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
  }

  .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
  }
  
  .info-box a {
    color : black;
    text-decoration: none;
  }
  
  .info-box:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .icon {
    font-size: 2.5rem;
    color: #1e266d;
    margin-bottom: 1rem;
  }
  
  .info-box h3 {
    margin: 0.5rem 0;
    color: #1e266d;
  }
  
  .info-box p {
    color: #555;
  }

    /* Social Media Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-icons a {
  font-size: 1.8rem;
  color: #1e266d;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #ff6600; /* Accent hover color */
  transform: translateY(-3px);
}
  
  