      body {
      font-family: 'Roboto', sans-serif;
      color: #333;
      }
      .hero-section {
      background: linear-gradient(135deg, #1976d2, #00bfff);
      color: white;
      padding: 80px 0;
      text-align: center;
      }
      .hero-section h1 {
      font-size: 2.5rem;
      font-weight: 700;
      }
      .content-section {
      padding: 60px 0;
      background-color: #f8f9fa;
      }
      .content-section h2 {
      color: #1976d2;
      font-weight: 500;
      margin-bottom: 20px;
      }
      .content-section h3 {
      color: #00bfff;
      font-weight: 500;
      margin-top: 20px;
      }
      .content-section ul {
      list-style-type: disc;
      padding-left: 20px;
      }
      .content-section .contact-info {
      margin-top: 30px;
      }
      .content-section .contact-info p {
      margin-bottom: 10px;
      font-size: 1.1rem;
      }
      .content-section .contact-info i {
      margin-right: 10px;
      color: #1976d2;
      }
      .navbar {
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }
      .navbar-brand {
      font-weight: 700;
      color: #1976d2 !important;
      display: flex;
      align-items: center;
      }
      .navbar-brand img {
      height: 30px;
      margin-right: 10px;
      }
      .nav-link {
      font-weight: 400;
      color: #333 !important;
      }
      .nav-link:hover {
      color: #00bfff !important;
      }
      .card {
      transition: transform 0.3s ease;
      border: none;
      border-radius: 10px;
      }
      .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }
      .card-title {
      color: #00bfff;
      font-weight: 500;
      }
      .equal-height-row {
      display: flex;
      flex-wrap: wrap;
      }
      .equal-height-row .card {
      display: flex;
      flex-direction: column;
      height: 100%;
      }
      .equal-height-row .card-body {
      flex: 1;
      }
      .footer {
      background-color: #1976d2;
      color: white;
      padding: 20px 0;
      text-align: center;
      font-weight: 300;
      }