body {
      margin: 0;
      font-family: 'Helvetica', sans-serif;
      background-color: #000;
      color: #fff;
      line-height: 1.6;
    }

    .container {
      padding: 20px;
      max-width: 960px;
      margin: auto;
    }

    .logo {
      text-align: center;
      margin-bottom: 30px;
    }

    .logo img {
      max-width: 100%;
      height: auto;
    }

    .hero {
      text-align: center;
      margin-bottom: 30px;
    }

    .hero h1 {
      font-family: 'Helvetica', sans-serif;
      font-size: 2rem;
      margin-bottom: 15px;
    }

    .hero p {
      font-size: 1rem;
      color: #ccc;
    }

    .description {
      text-align: center;
      font-size: 1rem;
      margin-bottom: 30px;
      color: #aaa;
    }

    .cta {
      text-align: center;
      margin-bottom: 50px;
    }

    .cta a {
      background-color: #00bfff;
      color: #000;
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 600;
      transition: background 0.3s;
    }

    .cta a:hover {
      background-color: #00a6d6;
    }

    .projects {
      margin-bottom: 50px;
    }

    .projects h2 {
      text-align: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
    }

    .project-item {
      background-color: #111;
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .project-cover {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 10px;
    }

    .project-title {
      font-weight: 600;
      font-size: 1.1rem;
    }

    .project-description {
      font-size: 0.95rem;
      color: #ccc;
    }

    
      
    .partners {
      border-top: 1px solid #333;
      padding: 40px 0;
      text-align: center;
    }

    .partners h2 {
      font-size: 1.3rem;
      margin-bottom: 20px;
    }

    .logo-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .logo-row img {
      height: 50px;
      filter: brightness(0) invert(1);
      opacity: 0.8;
      transition: opacity 0.3s;
    }

    .logo-row img:hover {
      opacity: 1;
    }

    @media (min-width: 640px) {
      .project-item {
        flex-direction: row;
        gap: 20px;
      }

      .project-cover {
        width: 120px;
        aspect-ratio: auto;
      }




    }