    /* --- CSS Variables & Resets --- */
    :root {
      --navy: #243547;
      --tan: #d2c1aa;
      --light-tan: #f5f1ea;
      --bg-gray: #e6e9ed;
      --text-main: #1a1a1a;
      --text-muted: #666666;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      color: var(--text-main);
      background-color: #ffffff;
      line-height: 1.5;
    }

    a {
        color: #00009E
    }

    /* --- Global Layout Containers --- */
    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* --- Header Component --- */
    .site-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 40px;
      background-color: #ffffff;
    }

    .logo img {
      height: 70px; /* Adjust height based on actual logo asset file */
      display: block;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-muted);
      font-size: 15px;
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--navy);
    }

    .btn-consultation {
      background-color: var(--navy);
      color: #ffffff;
      padding: 14px 28px;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      border-radius: 2px;
      transition: opacity 0.2s ease;
    }

    .btn-consultation:hover {
      opacity: 0.9;
    }

    /* --- Hero Banner Component --- */
    .resources-hero {
      text-align: center;
      padding: 80px 24px 40px 24px;
    }

    .sub-banner-text {
      text-transform: uppercase;
      letter-spacing: 5px;
      color: var(--text-muted);
      font-size: 13px;
      margin-bottom: 12px;
      font-weight: 500;
    }

    .main-title {
      font-family: "Georgia", Georgia, serif;
      font-size: 52px;
      color: var(--navy);
      font-weight: 400;
      margin-bottom: 24px;
    }

    .promo-callout {
      background-color: var(--bg-gray);
      display: inline-block;
      padding: 10px 24px;
      font-size: 16px;
      color: #2b2b2b;
    }

    /* --- Cards Grid Component --- */
    .cards-section {
      padding: 40px 0 100px 0;
    }

    .cards-grid {
      display: flex;
      justify-content: space-between;
      gap: 40px;
    }

    .card {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .card-image-wrapper {
      width: 100%;
      margin-bottom: 24px;
      /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); */
      transition: transform 0.3s ease;
    }

    .card-image-wrapper:hover {
      transform: translateY(-4px);
    }

    .card-image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
    }

    .card h3 {
      font-size: 20px;
      color: #000000;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 16px;
      max-width: 290px;
    }

    .card p {
      font-size: 15px;
      color: #000/* var(--text-muted)*/;
      line-height: 1.6;
      margin-bottom: 24px;
      max-width: 290px;
    }

    .btn-download {
      display: inline-block;
      border: 1px solid var(--tan);
      background-color: var(--light-tan);
      color: #555555;
      padding: 12px 36px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.2s ease;
    }

    .btn-download:hover {
      background-color: var(--tan);
      color: #ffffff;
    }

    /* --- Footer Component --- */
    .site-footer {
      background-color: var(--navy);
      color: #ffffff;
      padding: 80px 0 30px 0;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand {
      flex: 1;
    }

    .footer-logo {
      height: 80px;
      margin-bottom: 20px;
    }

    .footer-info {
      flex: 2;
      display: flex;
      justify-content: space-between;
      gap: 40px;
    }

    .contact-details p {
      font-size: 15px;
      margin-bottom: 12px;
      color: rgba(255, 255, 255, 0.8);
    }

    .contact-details a {
      color: #ffffff;
      text-decoration: none;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-icons a {
      color: #ffffff;
      font-size: 18px;
      text-decoration: none;
      opacity: 0.8;
    }

    .social-icons a:hover {
      opacity: 1;
    }

    .footer-links-col {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links-col h4 {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 4px;
      color: rgba(255, 255, 255, 0.4);
    }

    .footer-links-col a {
      color: #ffffff;
      text-decoration: none;
      font-size: 15px;
      opacity: 0.8;
      transition: opacity 0.2s;
    }

    .footer-links-col a:hover {
      opacity: 1;
    }

    .footer-badge {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
      text-align: right;
    }

    .badge-img {
      width: 80px;
      height: auto;
    }

    .badge-text {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-bottom {
      padding-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
    }

    .legal-notice {
      line-height: 1.6;
    }

    .copyright-row {
      display: flex;
      justify-content: space-between;
    }

    .copyright-row a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
    }

    /* --- Responsive Breakpoint (Mobile & Tablet Layout) --- */
    @media (max-width: 992px) {
      .site-header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
      }
      
      .cards-grid {
        flex-direction: column;
        align-items: center;
        gap: 60px;
      }

      .card {
        width: 100%;
        max-width: 400px;
      }

      .footer-top {
        flex-direction: column;
        gap: 50px;
      }

      .footer-info {
        flex-direction: column;
        gap: 40px;
        width: 100%;
      }

      .footer-badge {
        align-items: flex-start;
        text-align: left;
      }

      .copyright-row {
        flex-direction: column;
        gap: 10px;
      }
    }