@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap); 

/* Reset & Base Setup */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  	font-family: "Poppins", sans-serif;
    }

    body {
	 font-family: "Poppins", sans-serif;
      background-color: #f5f6f8;
      color: #333;
     /*  zoom: 70%; Set default page zoom to 70% */
    }

    .content-wrapper {
      max-width: 1897px;
      margin: 0 auto;
      padding: 0 16px;
    }

    /* Banner fixed to max 1897px width and 525px height */
    .mysg-landing-banner {

      background-color: #14213d;
      background-image: url('/iwov-resources/microsite/cross-border-home/images/banner-desktop.png');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      color: #fff;
      text-align: center;
      
      /* Fixed Dimensions */
      max-width: 1897px;
      height: 525px;
      margin: 80px auto 0; /* Center banner horizontally */
      
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    /* Typography scaled for 525px height */
    .text-banner h3 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 14px;
      line-height: 1.25;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    }

    .text-banner .yellow {
      color: #ffcb00;
    }

    .text-banner p {
      font-size: 18px;
      color: #e0e0e0;
      line-height: 1.4;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }

    /* Cards Layout */
    .cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }


    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .mysg-landing-banner {
        width: 100%;
        height: 280px; /* Responsive height scale on mobile */
        padding: 16px;
      }

      .cards-grid {
        grid-template-columns: 1fr;
      }

      .text-banner h3 {
        font-size: 22px;
      }

      .text-banner p {
        font-size: 14px;
      }
    }
