
    /* Investor Relations specific styles */
    .ir-spacer { height: 120px; background: var(--primary-color); }

    .ir-contacts-wrapper {
      display: flex;
      padding: 3rem;
      gap: 2rem;
      color: var(--primary-color);
      max-width: var(--screen-width-limit);
      margin: 0 auto;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .ir-contact-item {
      flex-basis: 30%;
      flex-grow: 0;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      line-height: 2rem;
    }

    .ir-contact-title {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .ir-contact-desc {
      font-size: 0.9rem;
      line-height: 1.8;
      white-space: pre-line;
    }

    /* Annual report */
    .ir-annual-wrapper {
      display: flex;
      padding: 3rem;
      flex-direction: row;
      gap: 4rem;
      align-items: center;
      max-width: var(--screen-width-limit);
      margin: 0 auto;
    }

    .ir-annual-img {
      flex-basis: 30%;
      flex-shrink: 0;
    }

    .ir-annual-img img { width: 100%; }

    .ir-annual-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .ir-annual-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-color);
    }

    .ir-annual-desc {
      font-size: 0.9rem;
      line-height: 1.8;
      color: var(--primary-color);
    }

    /* Downloads */
    .ir-download-bg { background: #f7f7f7; }

    .ir-download-wrapper {
      display: flex;
      gap: 1rem;
      padding: 3rem;
      max-width: var(--screen-width-limit);
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .ir-download-item {
      display: flex;
      flex-basis: 23%;
      flex-shrink: 0;
      flex-direction: column;
      gap: 5rem;
      justify-content: space-between;
      color: var(--primary-color);
      line-height: 2rem;
      padding: 2rem;
      background: white;
      border-radius: 0.25rem;
    }

    .ir-download-title {
      font-size: 1.25rem;
      font-weight: 700;
    }

    .ir-download-desc {
      font-size: 0.825rem;
      line-height: 1.4rem;
      margin-top: auto;
    }

    .ir-download-section {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .ir-download-btn {
      display: block;
      text-align: center;
      padding: 0.85rem 1rem;
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: background 0.2s ease, color 0.2s ease;
      text-decoration: none;
    }

    .ir-download-btn:hover {
      background: var(--primary-color);
      color: white;
    }

    @media screen and (max-width: 780px) {
      .ir-contacts-wrapper { flex-direction: column; padding: 1.5rem; }
      .ir-contact-item { flex-basis: 100%; }
      .ir-annual-wrapper { flex-direction: column; padding: 1.5rem; gap: 1.5rem; }
      .ir-download-wrapper { flex-direction: column; padding: 1.5rem; }
      .ir-download-item { flex-basis: 100%; gap: 2rem; }
    }