
    body {
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
      background: #0f0f15;
      color: #e2e8f0;
      line-height: 1.6;
    }

    .container {
      max-width: 99%;
      margin: 0 auto;
      padding: 20px;
    }

    .hero {
      text-align: center;
     
    }

    .title {
      font-size: 3rem;
      margin-bottom: 20px;
      background: linear-gradient(90deg, #2979ff, #56cfe1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .subtitle {
      font-size: 1.2rem;
      color: #94a3b8;
      max-width: 800px;
      margin: 0 auto 40px;
    }

    .tool-card {
      background: rgba(30, 30, 45, 0.7);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
      border: 1px solid rgba(86, 207, 225, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .tool-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .tool-card h2 {
      font-size: 1.8rem;
      color: #e2e8f0;
      margin: 0 0 10px;
    }

    .tool-card h3 {
      font-size: 1.2rem;
      color: #56cfe1;
      margin: 15px 0 10px;
    }

    .tool-card p {
      color: #a0aec0;
      margin: 10px 0;
    }

    .tool-card ul {
      color: #a0aec0;
      padding-left: 20px;
    }

    .tool-card ul li {
      margin-bottom: 10px;
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      background: rgba(30, 30, 45, 0.7);
      border-radius: 12px;
      overflow: hidden;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 12px;
      text-align: left;
      border-bottom: 1px solid rgba(86, 207, 225, 0.2);
    }

    .comparison-table th {
      background: rgba(86, 207, 225, 0.1);
      color: #56cfe1;
      font-weight: 600;
    }

    .comparison-table td {
      color: #e2e8f0;
    }

    .note {
      text-align: center;
      padding: 20px;
      background: rgba(30, 30, 45, 0.7);
      border-radius: 12px;
      border: 1px solid rgba(86, 207, 225, 0.2);
      margin-top: 40px;
    }

    .note p {
      color: #94a3b8;
      margin: 0 0 10px;
    }

    .note a {
      color: #56cfe1;
      text-decoration: none;
    }

    .note a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .title {
        font-size: 2.2rem;
      }

      .subtitle {
        font-size: 1rem;
      }

      .tool-card h2 {
        font-size: 1.5rem;
      }

      .comparison-table th,
      .comparison-table td {
        padding: 8px;
        font-size: 0.9rem;
      }
    }


    .container {
          max-width: 80%;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      background: #0f0f15;
      color: #e2e8f0;
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      background-image: 
        radial-gradient(circle at 15% 50%, rgba(41, 121, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(86, 207, 225, 0.1) 0%, transparent 25%);
    }

    .main {
      flex: 1;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .hero {
      text-align: center;
      padding: 60px 20px 40px;
      position: relative;
    }

    .heroContent {

      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .title {
      font-size: 3.2rem;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
    }

    .titleText {
      background: linear-gradient(90deg, #2979ff, #56cfe1, #80ffdb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 20px rgba(41, 121, 255, 0.4);
    }

    .chipIcon {
      font-size: 2.5rem;
      color: #56cfe1;
    }

    .subtitle {
      font-size: 1.2rem;
      color: #94a3b8;
      margin-bottom: 40px;
 

    }

    .articleCard {
      background: rgba(30, 30, 45, 0.7);
      border-radius: 16px;
      padding: 25px;
      border: 1px solid rgba(86, 207, 225, 0.2);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .articleCard:hover {
      transform: translateY(-5px);
      border-color: #56cfe1;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .articleCard h2 {
      font-size: 1.5rem;
      margin: 10px 0 15px;
      color: #e2e8f0;
      line-height: 1.4;
    }

    .description {
      color: #a0aec0;
      flex-grow: 1;
      margin-bottom: 20px;
      line-height: 1.7;
    }

    .note {
      margin-top: 60px;
      padding: 25px;
      background: rgba(30, 30, 45, 0.7);
      border-radius: 16px;
      text-align: center;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(86, 207, 225, 0.2);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .note p {
      color: #94a3b8;
      margin-bottom: 15px;
      line-height: 1.8;
    }

    .note strong {
      color: #56cfe1;
    }

    @media (max-width: 768px) {
      .title {
        font-size: 2.5rem;
        flex-direction: column;
        text-align: center;
        gap: 15px;
      }
      
      .chipIcon {
        margin-bottom: 10px;
      }
    }

    .hero {
      text-align: center;
      padding: 60px 20px;
    }

    .title {
      font-size: 3rem;
      margin-bottom: 20px;
      background: linear-gradient(90deg, #2979ff, #56cfe1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .subtitle {
      font-size: 1.2rem;
      color: #94a3b8;
      max-width: 800px;
      margin: 0 auto 40px;
    }

    .section-card {
      background: rgba(30, 30, 45, 0.7);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
      border: 1px solid rgba(86, 207, 225, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .section-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .section-card h2 {
      font-size: 1.8rem;
      color: #e2e8f0;
      margin: 0 0 10px;
    }

    .section-card h3 {
      font-size: 1.4rem;
      color: #56cfe1;
      margin: 15px 0 10px;
    }

    .section-card p {
      color: #a0aec0;
      margin: 10px 0;
    }

    .section-card ul {
      color: #a0aec0;
      padding-left: 20px;
    }

    .section-card ul li {
      margin-bottom: 10px;
    }

    .case-study {
      background: rgba(86, 207, 225, 0.1);
      border-radius: 8px;
      padding: 15px;
      margin: 10px 0;
      color: #e2e8f0;
    }

    .case-study strong {
      color: #56cfe1;
    }

    .note {
      text-align: center;
      padding: 20px;
      background: rgba(30, 30, 45, 0.7);
      border-radius: 12px;
      border: 1px solid rgba(86, 207, 225, 0.2);
      margin-top: 40px;
    }

    .note p {
      color: #94a3b8;
      margin: 0 0 10px;
    }

    .note a {
      color: #56cfe1;
      text-decoration: none;
    }

    .note a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .title {
        font-size: 2.2rem;
      }

      .subtitle {
        font-size: 1rem;
      }

      .section-card h2 {
        font-size: 1.5rem;
      }

      .section-card h3 {
        font-size: 1.2rem;
      }
    }
