/* Default styles for the logo */
.main-menu__logo img, .main-menu__title img {
    max-height: 75px;
    width: 100%;
}

/* Media query for small screen devices */
@media (max-width: 767px) {
    .main-menu__logo img,
    .main-menu__title img {
        max-width: 250px; /* Adjust the max-width for small screens */
    }
}

.main-footer p, .main-footer li, .main-footer blockquote, .main-footer cite, .main-footer dd, .main-footer .btn {
    font-family: 'Work Sans',sans-serif;
    font-weight: 300;
    font-size: 14px;
}

/* Default styles for the cover image */
.journal-cover {
    height: auto;
    width: 250px;
    margin-left: 200px; /* Remove left margin on mobile */
    margin-top: 1px;
}

/* Styles for mobile devices */
@media (max-width: 767px) {
    .journal-cover {
        margin-left: 0; /* Remove left margin on mobile */
        margin-top: 1px;
    }
}

.page-container {
    display: flex;
    flex-wrap: wrap; /* Allow the columns to wrap on smaller screens */
  }
  
  .page-container .column {
    flex: 1;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px; /* Adjust the gap between columns as needed */
    margin-bottom: 10px; /* Add bottom margin to create spacing between rows */
  }
  
  .page-container .column:last-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .page-container .single-column {
    flex: 100%; /* Make the single-column span the full width */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 0;
    margin-bottom: 10px; /* Add bottom margin to create spacing between rows */
  }
  
  .payment-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0068BD;
    color: #f1f1f1;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .payment-button:hover {
    background-color: #2c3b38;
    color: #f1f1f1;
  }
  
  .payment-button:active {
    background-color: #2c3b38;
    color: #f1f1f1;
  }