/* ======== BASIC STYLES ======== */
    body {
      font-family: "Raleway", sans-serif;
      
      /* Set the background image */
      background-image: url('../images/Splashpage25.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      
      /* Optional: Add a fallback background color */
      background-color: #f5f5f5;
      
      /* Optional: Add a semi-transparent overlay for better text readability */
      /* Uncomment the following lines if needed
      position: relative;
    }
    
    body::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); // Adjust opacity as needed
      z-index: -1;
    }
    */
    
      color: #333333;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    a {
      text-decoration: none;
      color: #15A2DD; /* Light Blue */
      transition: color 0.3s, transform 0.3s;
    }
    a:hover, a:focus {
      color: #15A2DD; /* Darker Blue on Hover */
      transform: translateY(-2px);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* ======== HEADER ======== */
    header {
      width: 100%;
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .top-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: #e9e7e3;
    }
    .logo img {
      height: 65px;
      width: auto;
    }
    .language-switcher {
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    .language-switcher a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background-color: #004B7C; /* Light Blue with Opacity */
      padding: 0.5rem 1rem;
      border-radius: 5px;
      color: #ffffff;
      font-weight: bold;
      transition: background-color 0.3s, transform 0.3s;
    }
    .language-switcher a:hover, .language-switcher a:focus {
      background-color: #004B7C; /* Opaque on Hover */
      transform: translateY(-2px);
    }
    .language-switcher a .bi {
      font-size: 1rem;
    }

    /* ======== MAIN CONTENT ======== */
    main {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center; /* Vertically centers content */
      align-items: center;
      padding: 4rem 1rem; /* Increased top padding to center content slightly lower */
    }
    .content-section {
      width: 100%;
      max-width: 1200px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .content-container {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .content-box {
      background-color: #ffffff;
      border: 1px solid #dee2e6;
      border-radius: 8px;
      padding: 2rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      flex: 1 1 300px;
      max-width: 500px;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .content-box:hover {
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      transform: translateY(-5px);
    }
    .divider {
      width: 100%;
      height: 1px;
      background-image: url('../images/home_heading_divider.gif');
      background-repeat: no-repeat;
      background-size: cover;
      margin-bottom: 1rem;
      margin-top: 1rem;
    }
    .ofina h2 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-align: center;
      color: #333333;
    }
    .highlight {
      color: #004B7C; /* Light Blue Highlight */
    }
    .language-link {
      margin-bottom: 1rem;
      text-align: center;
    }
    .language-link a {
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background-color: #004B7C; /* Light Blue with Opacity */
      padding: 0.5rem 1rem;
      border-radius: 5px;
      color: #ffffff;
      font-weight: bold;
      transition: background-color 0.3s, transform 0.3s;
    }
    .language-link a:hover, .language-link a:focus {
      background-color: #004B7C; /* Opaque on Hover */
      transform: translateY(-2px);
    }
    .language-link a .bi {
      font-size: 1rem;
    }
    .blurb {
      font-size: 1.1rem;
      line-height: 1.6;
      text-align: center;
      margin-bottom: 1.5rem;
      color: #555555;
    }
    .bottomnav-splash {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      font-size: 0.95rem;
    }
    .bottomnav-splash span {
  display: inline-block; /* Changed from flex */
  margin: 0 0.25rem; /* Add spacing between items */
}

.bottomnav-splash span:not(:last-child)::after {
  content: "|";
  margin-left: 0.75rem;
  color: #000000;
  display: inline-block; /* Make separator inline */
}
    
    /* ======== SCROLL TO TOP BUTTON ======== */
    .scrollup {
      display: none; /* Hidden by default */
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: #004B7C; /* Light Blue Background */
      border: none;
      border-radius: 50%; /* Circle Shape */
      text-align: center;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 10000; /* Above other elements */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slight Shadow */
      transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
	  display: flex; /* To center the icon */
      font-size: 1.5rem;
      color: #ffffff;
    }
    .scrollup:hover {
      background-color: #0e7aa5; /* Darker Blue on Hover */
      transform: scale(1.1); /* Slightly Enlarge */
      color: #ffffff;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Deeper Shadow on Hover */
    }

    /* ======== RESPONSIVE DESIGN ======== */
    @media (max-width: 768px) {
      .top-nav {
        flex-direction: column;
        gap: 1rem;
      }
      .content-container {
        flex-direction: column;
        align-items: center;
      }
      .content-box {
        max-width: 90%;
      }
      .bottomnav-splash {
        flex-direction: column;
        align-items: center;
      }
      .bottomnav-splash span:not(:last-child):after {
        content: "";
        margin: 0;
      }
    }