@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=Outfit:wght@400;500;600;700&display=swap");

    .ci-container {
      --navy: #003876;
      --navy-dark: #002255;
      --navy-light: #004fa3;
      --gold: #c8972b;
      --gold-light: #e6b84a;
      --gold-pale: #fdf3dc;
      --white: #ffffff;
      --gray-50: #f8f7f4;
      --gray-100: #eeece6;
      --gray-300: #c5c2b8;
      --gray-500: #7a7870;
      --gray-700: #3d3c38;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
      --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.13);
      --radius: 12px;
      --radius-sm: 8px;

      font-family: "Outfit", sans-serif;
      background: var(--gray-50);
      color: var(--gray-700);
      min-height: 100vh;
    }

    /* ── HERO ── */

    .ci-hero {
      background: var(--navy-dark);
      position: relative;
      overflow: hidden;
      padding: 64px 24px 72px;
      text-align: center;
    }

    .ci-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(
          ellipse 60% 80% at 10% 50%,
          rgba(200, 151, 43, 0.12) 0%,
          transparent 60%
        ),
        radial-gradient(
          ellipse 50% 70% at 90% 40%,
          rgba(0, 79, 163, 0.25) 0%,
          transparent 60%
        );
    }

    .ci-hero-pattern {
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.025) 0px,
          rgba(255, 255, 255, 0.025) 1px,
          transparent 1px,
          transparent 60px
        ),
        repeating-linear-gradient(
          0deg,
          rgba(255, 255, 255, 0.025) 0px,
          rgba(255, 255, 255, 0.025) 1px,
          transparent 1px,
          transparent 60px
        );
    }

    .ci-hero-accent {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 30%,
        var(--gold-light) 70%,
        transparent 100%
      );
    }

    .ci-hero-content {
      position: relative;
      z-index: 1;
      max-width: 780px;
      margin: 0 auto;
    }

    .ci-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 20px;
    }

    .ci-hero-eyebrow span {
      display: inline-block;
      width: 24px;
      height: 1px;
      background: var(--gold-light);
    }

    .ci-hero h1 {
      font-family: "Nunito", sans-serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .ci-hero h1 em {
      font-style: normal;
      color: var(--gold-light);
    }

    .ci-hero p {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.72);
      max-width: 640px;
      margin: 0 auto;
    }

    /* ── MAIN CONTENT ── */

    .ci-main {
      max-width: 1000px;
      margin: 0 auto;
      padding: 56px 24px 80px;
    }

    /* ── SECTION TITLE ── */

    .ci-section-label {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .ci-section-label-bar {
      width: 4px;
      height: 28px;
      background: var(--gold);
      border-radius: 2px;
      flex-shrink: 0;
    }

    .ci-section-label h2 {
      font-family: "Nunito", sans-serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--navy);
    }

    /* ── CONTENT BLOCK ── */

    .ci-content-block {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--gray-100);
      box-shadow: var(--shadow-sm);
      padding: 28px 28px 24px;
      margin-bottom: 28px;
      transition: box-shadow 0.2s ease;
    }

    .ci-content-block:hover {
      box-shadow: var(--shadow-md);
    }

    .ci-content-block p {
      margin-bottom: 15px;
      line-height: 1.6;
      color: var(--gray-700);
    }

    .ci-content-block ul {
      margin-left: 20px;
      margin-bottom: 15px;
      list-style-type: none;
    }

    .ci-content-block ul li {
      margin-bottom: 8px;
      position: relative;
    }

    .ci-content-block ul li:before {
      content: "◉";
      color: var(--gold);
      position: absolute;
      left: -20px;
    }

    /* ── BUTTON GRID ── */

    .ci-btn-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 12px;
      margin-top: 20px;
    }

    .ci-btn-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .ci-btn-key {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray-500);
      padding-left: 2px;
    }

    .ci-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      font-family: "Outfit", sans-serif;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.18s ease;
      border: none;
      outline: none;
    }

    .ci-btn-primary {
      background: var(--navy);
      color: var(--white);
    }

    .ci-btn-primary:hover {
      background: var(--navy-light);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(0, 56, 118, 0.3);
      color: var(--white);
    }

    .ci-btn-outline {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid var(--navy);
    }

    .ci-btn-outline:hover {
      background: var(--navy);
      color: var(--white);
      transform: translateY(-1px);
    }

    .ci-btn-gold {
      background: var(--gold);
      color: var(--white);
    }

    .ci-btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(200, 151, 43, 0.3);
      color: var(--white);
    }

    .ci-btn-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      opacity: 0.85;
    }

    /* ── DIVIDER ── */

    .ci-divider {
      height: 1px;
      background: var(--gray-100);
      margin: 40px 0;
    }

    /* ── SOCIAL ── */

    .ci-social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
      align-items: center;
    }

    .ci-social-links a img {
      transition: transform 0.2s;
    }

    .ci-social-links a:hover img {
      transform: scale(1.1);
    }

    /* ── IMAGES GRID ── */

    .ci-image-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .ci-image-grid img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.2s;
    }

    .ci-image-grid img:hover {
      box-shadow: var(--shadow-md);
    }

    /* ── STEPS ── */

    .ci-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 20px;
    }

    .ci-step {
      background: var(--gray-50);
      border-radius: var(--radius-sm);
      padding: 20px;
      border: 1px solid var(--gray-100);
    }

    .ci-step-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    .ci-step-number {
      background: var(--navy);
      color: var(--white);
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
    }

    .ci-step h3 {
      font-size: 16px;
      color: var(--navy);
      margin: 0;
    }

    .ci-step img {
      max-width: 100%;
      border-radius: var(--radius-sm);
      margin-top: 10px;
      border: 1px solid var(--gray-100);
    }

    /* ── FOOTER NOTE ── */

    .ci-footer-note {
      text-align: center;
      margin-top: 56px;
      padding-top: 24px;
      border-top: 1px solid var(--gray-100);
      font-size: 13px;
      color: var(--gray-500);
    }

    .ci-footer-note strong {
      color: var(--navy);
    }

    /* ── ANIMATIONS ── */

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .ci-content-block {
      animation: fadeUp 0.5s ease both;
    }

    .ci-content-block:nth-child(1) {
      animation-delay: 0.1s;
    }

    .ci-content-block:nth-child(2) {
      animation-delay: 0.2s;
    }

    .ci-content-block:nth-child(4) {
      animation-delay: 0.3s;
    }

    .ci-content-block:nth-child(5) {
      animation-delay: 0.4s;
    }