  <style>
    *, *::before, *::after {
      box-sizing: border-box;
    }

    body {
      font-family: 'Lora', serif;
      margin: 0;
      padding: 0;
      color: #fff;
      background-color: #333;
    }

    a {
      color: #c0c0c0;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    a:hover {
      color: #ffffff;
    }

    /* ── HEADER ── */
    header {
      background-color: #fff;
      padding: 20px;
      text-align: center;
    }

    .logo img {
      max-width: 200px;
    }

    /* ── NAV ── */
    nav {
      background-color: #444;
    }

    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }

    nav ul li {
      position: relative;
    }

    nav ul li a {
      display: block;
      padding: 12px 16px;
      color: #fff;
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.9em;
      letter-spacing: 0.5px;
    }

    nav ul li:hover {
      background-color: #665;
    }

    nav ul li ul {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #555;
      min-width: 180px;
      z-index: 1000;
    }

    nav ul li:hover ul {
      display: block;
    }

    nav ul li ul li a {
      padding: 10px;
      font-weight: normal;
      font-size: 0.78em;
    }

    /* ── MAIN CONTENT WRAPPER ── */
    .content {
      display: flex;
      justify-content: center;
      padding: 30px 20px;
      background: #444;
      animation: zoomIn 1.5s ease-in-out both;
    }

    .content-text {
      width: 90%;
      max-width: 1000px;
      padding: 40px;
      background-color: #2d2d2d;
      border-radius: 10px;
      color: #c0c0c0;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .content-text h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.4em;
      font-weight: 700;
      margin-bottom: 16px;
      color: #e0e0e0;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .content-text p {
      font-size: 1em;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    /* ── LOGO / BOOKS IMAGE ── */
    .books-image {
      text-align: center;
      margin-bottom: 36px;
    }

    .books-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    /* ── DIVIDER ── */
    .divider {
      border: none;
      border-top: 1px solid #a0845c;
      margin: 36px 0;
    }

    /* ── MISSION BANNER ── */
    .mission-banner {
      background-color: #1e1e1e;
      border-left: 4px solid #a0845c;
      border-radius: 6px;
      padding: 28px 32px;
      margin: 36px 0 0;
    }

    .mission-banner h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1em;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #a0845c;
      margin: 0 0 14px;
    }

    .mission-banner p {
      font-size: 1em;
      line-height: 1.75;
      color: #c8c8c8;
      margin: 0 0 16px;
    }

    .mission-banner p:last-child {
      margin-bottom: 0;
    }

    .mission-banner a {
      color: #a0845c;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .mission-banner a:hover {
      color: #d4a96a;
    }

    /* ── DIVISIONS GRID ── */
    .divisions {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 36px;
    }

    .division-card {
      background-color: #1e1e1e;
      border-radius: 8px;
      padding: 24px 20px;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .division-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }

    .division-card .icon {
      font-size: 2em;
      margin-bottom: 12px;
    }

    .division-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95em;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #e0e0e0;
      margin: 0 0 10px;
    }

    .division-card p {
      font-size: 0.85em;
      line-height: 1.6;
      color: #a0a0a0;
      margin: 0 0 16px;
    }

    .division-card a.card-link {
      display: inline-block;
      font-size: 0.8em;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #a0845c;
      border: 1px solid #a0845c;
      padding: 6px 14px;
      border-radius: 4px;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .division-card a.card-link:hover {
      background-color: #a0845c;
      color: #fff;
    }

    /* ── ANIMATIONS ── */
    @keyframes zoomIn {
      0% { opacity: 0; transform: scale(0.97); }
      100% { opacity: 1; transform: scale(1); }
    }

    /* ── RETURN HOME ── */
    .return-home {
      text-align: center;
      padding: 14px 20px 6px;
      background-color: #262626;
    }

    .return-home a {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: #a0845c;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8em;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      text-decoration: none;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .return-home a:hover {
      color: #d4a96a;
      transform: translateY(-3px);
    }

    .return-home a .arrow {
      font-size: 1.6em;
      line-height: 1;
      transition: transform 0.3s ease;
    }

    .return-home a:hover .arrow {
      transform: translateY(-4px);
    }

    /* ── FOOTER ── */
    footer {
      background-color: #262626;
      color: #c0c0c0;
      text-align: center;
      padding: 20px;
      font-size: 0.75em;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .divisions {
        grid-template-columns: 1fr;
      }

      .content-text {
        padding: 24px 18px;
      }

      nav ul li a {
        font-size: 0.85em;
        padding: 10px 12px;
      }
    }

    @media (max-width: 1024px) {
      .divisions {
        grid-template-columns: repeat(2, 1fr);
      }

      .content-text {
        width: 95%;
        padding: 30px;
      }
    }
  </style>