    body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
      background-color: #f9f9f9;
      color: #333;
    }
    header {
      background-color: #1E3A5F;
      color: white;
      padding: 20px;
      text-align: center;
    }
    nav {
      background-color: #0f1a2c;
      display: flex;
      justify-content: center;
      padding: 10px 0;
    }
    nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
    }
    .container {
      max-width: 1000px;
      margin: auto;
      padding: 40px 20px;
    }
    h1 {
      color: white;
      font-family: 'Montserrat', sans-serif;
    }
    .intro {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 40px;
    }
    .cta {
      background-color: #FF6B35;
      color: white;
      padding: 20px;
      text-align: center;
      border-radius: 8px;
      margin: 40px 0;
    }
    .cta a {
      color: white;
      font-weight: bold;
      text-decoration: underline;
    }
    .section-title {
      font-size: 1.2rem;
      margin-top: 40px;
      color: #1E3A5F;
    }
    ul {
      list-style: none;
      padding-left: 0;
    }
    ul li::before {
      content: "🔧 ";
      color: #FF6B35;
    }
    footer {
      background-color: #1E3A5F;
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
    }