* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom right, #f0f4f8, #d9e4ec);
    color: #333;
    padding: 0 20px;
  }
  
  /* Hero */
  .hero {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 0 0 40px 40px;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  /* Section Headings */
  h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    text-align: center;
    color: #2a3d45;
  }
  
  /* Featured Section */
  .featured-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .post-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 300px;
    transition: transform 0.3s;
  }
  
  .post-card:hover {
    transform: translateY(-5px);
  }
  
  .post-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0b2e3b;
  }
  
  .meta {
    font-size: 0.85rem;
    color: #777;
  }
  
  /* Blog Grid */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
  }
  
  .blog-grid article {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease-in-out;
  }
  
  .blog-grid article:hover {
    transform: scale(1.02);
  }
  
  .blog-grid h3 {
    color: #123;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  /* About Team Section */
  .about-team {
    background: #f6fafd;
    padding: 40px 20px;
    border-radius: 20px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  
  .about-team h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
  }
  
  .about-content {
    max-width: 800px;
    margin: auto;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 30px 10px;
    font-size: 0.9rem;
    background: #0f2027;
    color: white;
    border-radius: 40px 40px 0 0;
    margin-top: 40px;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #555;
  }
  
  .site-footer h3, .site-footer h4 {
    color: #f2b544;
    margin-bottom: 10px;
  }
  
  .site-footer p,
  .site-footer a {
    color: #ccc;
    font-size: 0.95rem;
    text-decoration: none;
  }
  
  .site-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .social-icons a {
    display: inline-block;
    margin-right: 10px;
    background: #f2b544;
    color: #000;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
  }
  
  .social-icons a:hover {
    background: #fff;
    color: #000;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #999;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .post-card, .blog-grid article {
      width: 100%;
    }
  }
  