    body {
      margin: 0;
      background-color: #F2F2F2;
      font-family: 'Inter', sans-serif;
      color: #000;
      line-height: 1.6;
    }

    /* HEADER */
    header {
      background-color: #CB0E0E;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 25px 20px;
      gap: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    header img {
      height: 110px;
    }

    header h1 {
      color: #F7B718;
      font-size: 32px;
      font-weight: 600;
      margin: 0;
      letter-spacing: 1px;
    }

    /* NAVIGATION */
    nav {
      background-color: #112866;
      border-top: 2px solid #F7B718;
      border-bottom: 2px solid #F7B718;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
      margin: 0;
      padding: 12px 0;
      gap: 25px;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      padding: 6px 10px;
      border-radius: 4px;
      transition: 0.25s ease;
    }

    nav a:hover {
      background-color: #F7B718;
      color: #112866;
    }

    /* MAIN CONTENT */
    main {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      gap: 35px;
    }

    section {
      background-color: #FFFFFF;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      border-left: 6px solid #112866;
    }

    h2 {
      font-size: 26px;
      margin-bottom: 12px;
      color: #112866;
      font-weight: 600;
    }

    p {
      margin: 10px 0;
    }

    a {
      color: #112866;
      font-weight: 600;
    }

    a:hover {
      text-decoration: underline;
    }

    img {
      max-width: 100%;
      border-radius: 8px;
      margin-top: 15px;
    }