body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #f8fafc;
  }
  header {
    padding: 2rem;
    text-align: center;
    background-color: #1e293b;
    position: relative;
  }
  .ask-pro-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #38bdf8;
    color: #0f172a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
  }
  .ask-pro-button:hover {
    background-color: #0ea5e9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
  }
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  header p {
    font-size: 1.2rem;
    color: #cbd5e1;
  }
  section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  .system-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .icpareas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .card {
    background-color: #1e293b;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
  }
  .card:hover {
    transform: translateY(-5px);
  }
  .card {
    text-decoration: none;
    display: block;
  }
  .card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #38bdf8;
  }
  .card p {
    font-size: 0.95rem;
    color: #e2e8f0;
  }
  .icard {
    background-color: #cddefa;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
  }
  .icard:hover {
    transform: translateY(-5px);
  }
  .icard {
    text-decoration: none;
    display: block;
  }
  .icard h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
  }
  .icard p {
    font-size: 0.95rem;
    color: #1e293b;
  }
  footer {
    text-align: center;
    padding: 2rem;
    background-color: #0f172a;
    font-size: 0.875rem;
    color: #94a3b8;
  }
  .content-card {
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
  }
  h2{
    color: #38bdf8;
  }
  .content-card h2 {
    color: #38bdf8;
    margin-bottom: 1rem;
  }
  .content-card p {
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .feature-list {
    list-style: none;
    padding: 0;
  }
  .feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #334155;
  }
  .feature-list li:last-child {
    border-bottom: none;
  }
  footer {
    text-align: center;
    padding: 2rem;
    background-color: #0f172a;
    font-size: 0.875rem;
    color: #94a3b8;
  }
  .back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
  }
  .back-link:hover {
    text-decoration: underline;
  }