/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
  }
  
  section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h1, h2, h3 {
    font-weight: 700;
  }
  
  h1 span {
    color: #2563eb;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    background: linear-gradient(to bottom right, #f8fafc, #e2e8f0);
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  .hero button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .hero button:hover {
    background: #1d4ed8;
  }
  
  /* Features Section */
  .features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .feature-card {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    flex: 1 1 250px;
    transition: transform 0.3s;
  }
  
  .feature-card:hover {
    transform: scale(1.03);
  }
  
  .feature-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  
  /* CTA Section */
  .cta {
    text-align: center;
    background: #e0f2fe;
    border-radius: 12px;
    padding: 60px 20px;
    margin-top: 80px;
  }
  
  .cta h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #0c4a6e;
  }
  
  .cta p {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 20px;
  }
  
  .cta input {
    padding: 12px;
    width: 250px;
    border: 1px solid #94a3b8;
    border-radius: 6px;
    margin-right: 10px;
  }
  
  .cta button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .cta button:hover {
    background: #1e40af;
  }
  
  .count-display {
    margin-top: 16px;
    font-weight: 600;
    color: #0c4a6e;
  }
  
  /* Footer */
  footer {
    background: #f8fafc;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
  }
  
  footer a {
    color: #2563eb;
    margin-left: 10px;
    text-decoration: none;
  }

  /* Modal Styles */
.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal.hidden {
    display: none;
  }
  
  .modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    text-align: left;
  }
  
  .modal-content h2 {
    margin-bottom: 20px;
    color: #2563eb;
  }
  
  .modal-content label {
    display: block;
    margin-top: 15px;
    font-weight: 500;
  }
  
  .modal-content input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .modal-content button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .modal-content .close-btn {
    background: #e5e7eb;
    color: #111827;
    margin-top: 10px;
  }
  
  #form-message {
    margin-top: 12px;
    font-weight: bold;
    text-align: center;
  }

  .site-header {
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }
  
  .logo {
    height: 60px;
    object-fit: contain;
  }

  .logo-small {
    height: 30px;
    margin-top: 10px;
    opacity: 0.7;
  }
  
  .blog-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .blog-tiles .tile {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-tiles .tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  
  .blog-tiles .tile img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .blog-tiles .tile h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1d4ed8;
    font-weight: 600;
  }
  
  .blog-tiles .tile p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
  }
  
  