  :root {
            --green: #007a5e;
            --red: #ce1126;
            --yellow: #fcd116;
            --star: #ffd700;
        }
 body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background-color: #fff;
      color: #1a1a1a;
    }

    header {
      background: linear-gradient(90deg, #007a5e, #ce1126, #fcd116);
      color: white;
      text-align: center;
      padding: 3.5rem 1rem;
    }

    header h1 {
      margin: 0;
      font-size: 2.5rem;
      font-weight: bold;
    }

    header p {
      font-size: 1.2rem;
      margin-top: 0.5rem;
    }

    .language-toggle {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem;

    }

    .language-toggle button {
      padding: 0.5rem 1rem;
      font-weight: bold;
      border: none;
      cursor: pointer;
      border-radius: 4px;
      background-color: white;
      color: #ce1126;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .language-toggle button.active {
      background-color: #ce1126;
      color: white;
    }

    .container {
      max-width: 900px;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    .petition {
      background-color: #f9f9f9;
      padding: 2rem;
      border-left: 6px solid #ce1126;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .petition h2 {
      color: #007a5e;
      margin-top: 0;
    }

    .petition p {
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .petition ul {
      margin-left: 1.2rem;
      margin-bottom: 1rem;
    }

    .btn {
      display: inline-block;
      background-color: #ce1126;
      color: white;
      padding: 0.8rem 1.5rem;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      transition: background 0.3s ease;
      
    }

    .btn:hover {
      background-color: #a20d1f;
    }

    .flag-pattern {
      max-width: 500px;
            height: 10px;
            background: linear-gradient(to right, var(--red) 33%, var(--yellow) 33% 66%, var(--green) 66%);
            margin: 2rem auto;
        }

    footer {
      text-align: center;
      padding: 1.5rem;
      font-size: 0.9rem;
      background-color:var(--green)  ;
      color: #e8e8e8;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 1.8rem;
      }

      .petition {
        padding: 1rem;
      }
    }