/* Make Montserrat the default font for everything. */
html, body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #62B8BF;
  }
  
  .spacing-features {
    /* Fill the rest of the screen below the navbar */
    min-height: calc(100vh - 5em);
    
    display: flex;          /* Turn on flex layout to allow vertical centering */
    align-items: center;    /* Vertically center the children */
    justify-content: center; /* If you also want to center horizontally */
  }
  .custom-row {
    /* Still a row of two columns side-by-side */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;  /* So it stretches inside its parent */
  }
  
  
  /* Each column takes 50% */
  .custom-column {
    flex: 1;
    padding: 20px;
  }
  
  /* Make the QR code bigger, and center the link with the code */
  .custom-image-column-left-desktop {
    display: flex;              /* So we can stack the image and link */
    flex-direction: column;
    align-items: center;        /* Center both image and link horizontally */
  }
  .custom-image-column-left-desktop img {
    width: 25em;                /* Increase the size of the QR code */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .custom-text-webapp-smartphone2 {
    text-align: center;
    color: #fff;
    margin-top: 1em;            /* Space above the link */
    font-size: 1em;             /* Slightly larger if you wish */
  }
  
  /* Make the main title large and bold */
  .title-feature-right {
    color: #fff;
    font-size: 4em;             /* Already quite large, adjust to taste */
    font-weight: 600;
    text-align: left;
    margin-bottom: 5%;
  }
  
  /* Slightly larger text on the right content */
  .custom-text-webapp-column2 {
    color: #fff;
    font-size: 1.5em;           /* Increase from default to make it bigger */
    line-height: 1.4;
    margin-bottom: 1em;
    margin-right: 17.5%;
  }
  
  .navbar {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #DBDBDB;
    z-index: 1000;
    padding: 0.5em 2%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
  
  .navbar-brand img {
    width: 4em !important;  /* Force the width to 4em */
    height: auto !important;
    margin-left: 50%;
  }
  
  