    body {
      font-family: 'Inter', sans-serif;
      background-color: #f8f9fa;
    }

    .navbar {
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .navbar-brand {
      font-weight: 700;
      color: #0056b3 !important;
    }

    .nav-link {
      font-weight: 500;
    }

    .header-section {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: white;
      padding: 80px 20px;
      text-align: center;
    }

    .header-section h1 {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .header-section p {
      font-size: 1.25rem;
    }

    .btn-primary {
      background-color: #0056b3;
      border: none;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 600;
    }

    .section-heading {
      font-size: 1.75rem;
      font-weight: 700;
      color: #0056b3;
      margin-bottom: 20px;
    }

    .boxed-section {
      background: #fff;
      border-radius: 15px;
      padding: 40px 20px;
      margin-bottom: 40px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .card-img-top {
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }

    .service-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .footer {
      background-color: #f1f3f5;
      padding: 30px 0;
      text-align: center;
      color: #555;
      font-size: 0.95rem;
    }
    
    .article-container {
      background: white;
      max-width: 800px;
      margin: 40px auto;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .article-container h3 {
      color: #0056b3;
    }    

    input[type="text"],
    input[type="email"] {
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .header-section h1 {
        font-size: 2rem;
      }
    }