body {
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 4rem;
  }

  /* Header Styles */
  .header-logo-text {
    color: #0b5394;
    font-weight: bold;
    border-left: 2px solid #0b5394;
    padding-left: 1rem;
    margin-left: 1rem;
    font-size: 1.9rem;
    line-height: 1.2;
  }

  /* Hero Text Styles */
  .hero-heading {
    color: #0b5394;
    font-weight: 800;
    font-size: 3.5rem;
    margin-top: 3rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
  }

  .hero-subtext {
    color: #333;
    font-size: 1.1rem;
    max-width: 500px;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  .hero-slogan {
    color: #0b5394;
    font-weight: bold;
    font-style: italic;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-slogan::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 3px;
    background-color: #f6b26b;
  }

  /* Card Grid Styles */
  .card-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 4rem;
    padding-bottom: 3rem;
  }

  .service-card {
    background: white;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    width: 13%; /* Distribute evenly */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-10px);
  }

  .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }

  .icon-circle i {
    font-size: 2rem;
    color: white;
  }

  /* Specific Icon Colors */
  .bg-icon-blue { background-color: #1a5276; }
  .bg-icon-green { background-color: #1e8449; }
  .bg-icon-orange { background-color: #d68910; }
  .bg-icon-purple { background-color: #6c3483; }
  .bg-icon-cyan { background-color: #117a65; }
  .bg-icon-red { background-color: #cb4335; }
  .bg-icon-darkblue { background-color: #154360; }

  .card-title {
    font-weight: bold;
    font-size: 0.9rem;
    color: #0b5394;
    min-height: 40px;
    margin-bottom: 10px;
  }

  .card-text {
    font-size: 0.75rem;
    color: #555;
    flex-grow: 1;
    margin-bottom: 15px;
  }

  .btn-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b5394;
    background: white;
    text-decoration: none;
    transition: all 0.3s;
  }

  .btn-circle:hover {
    background: #0b5394;
    color: white;
    border-color: #0b5394;
  }

  /* Footer Styles */
  footer {
    display: flex;
    justify-content: space-between;
    padding: 1rem 4rem;
    font-size: 0.9rem;
    color: #0b5394;
    font-weight: bold;
    z-index: 10;
  }