.focus-text a, .fast-facts-grid a, .learn-more-grid a {
    color: #0F9ED5;
    text-decoration: none;
    }
.focus-text a:hover, .footer-links a:hover, .fast-facts-grid a:hover, .learn-more-grid a:hover, .cta-link:hover {
    text-decoration: underline;
    }
.fast-facts-grid img, .history-grid img {
    height: 35vh;
    max-width: 90%;
    }
.fast-facts-grid p, .learn-more-grid p {
    color: #0F9ED5;
    margin: 10px 0 0;
    font-size: 28px;
    font-weight: normal;
    font-family: "Arial Narrow", Arial, sans-serif;
    }
.history-grid, .culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    }
.learn-more-grid, .dprom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
    text-align: center;
    }
.learn-more-grid div, .dprom-grid div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    }
h1::after, h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4EA72E;
    font-family: "Arial Narrow", Arial, sans-serif;
    }
h2#fast-facts::after, h2#learn-more::after, h2.section-title::after {
    background-color: #4EA72E;
    font-family: "Arial Narrow", Arial, sans-serif;
    }
a {text-decoration:none;}
body {margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;}
header {background-color: #f2f2f2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    z-index: 10;
    height: 50px; /* Ensures enough height to fit both rows */}
header .logo {display: flex;
    align-items: center;}
header .top-right {display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align content to the right */
    justify-content: space-between;
    height: 50px; /* Matches header height */
    width: 300px; /* Adjusted for better spacing */}
header .menu-links {display: flex;
    gap: 15px; /* Keeps spacing between links */
    justify-content: flex-end;
    font-size: 12px;
    white-space: nowrap; /* Prevents links from wrapping into two lines */}
header .menu-links a {text-decoration: none;
    color: #333;}
header .login-button {background-color: #00B0F0;
    color: white;
    padding: 5px 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-end;}
nav {background-color: #4EA72E;
    padding: 10px 20px;
    position: relative;
    z-index: 10;}
nav ul {list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;}
nav ul li {position: relative;
    display: flex;
    align-items: center;
    z-index: 20;}
nav > ul > li:not(:last-child)::after {content: "|";
    color: white;
    margin-left: 15px;
    font-size: 14px;}
nav ul li a {text-decoration: none;
    color: white;
    font-size: 14px;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
    white-space: nowrap;}
nav ul li a:hover {background-color: #005522;}
nav ul li ul {position: absolute;
    top: 100%;
    left: 0;
    background-color: #007722;
    display: none;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    z-index: 30;}
nav ul li:hover ul {display: block;}
nav ul li ul li {display: flex;
    align-items: center;
    padding: 5px 10px;}
nav ul li ul li a {flex-grow: 1;
    padding: 5px 10px;}
nav ul li ul li a::after {content: '\25B6';
    margin-left: 5px;
    font-size: 10px;
    color: white;
    display: inline-block;
    vertical-align: middle;
    font-family: "Arial Narrow", Arial, sans-serif;}
.content {flex: 1;
    padding: 20px;
    position: relative;
    z-index: 5;}
.focus-grid {display: flex;
    flex-direction: column;
    gap: 40px;
    width: 90%;
    margin: 0 auto;}
.focus-item {display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;}
.focus-text {flex: 1;
    text-align: left;
    font-family: "Arial Narrow", Arial, sans-serif;}
.focus-text a {color: #0F9ED5;
    text-decoration: none;}
.focus-text a:hover {text-decoration: underline;}
.focus-text h3 {color: #0F9ED5;
    font-size: 40px;
    font-family: "Arial Narrow", Arial, sans-serif;}
.focus-text h4 {font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-family: "Arial Narrow", Arial, sans-serif;}
.focus-text p {font-size: 28px;
    color: #444;
    font-family: "Arial Narrow", Arial, sans-serif;}
.focus-item img {
    width: 400px;
    height: auto;
    max-width: 20%;
    align-self: center;}
.footer {background-color: #E6E6E6; /* Light gray background */
    padding: 15px;
    font-size: 14px;
    color: #777;}
.footer-content {display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;}
.footer-left {text-align: left;}
.footer-links {display: flex;
    gap: 15px;
    flex-wrap: wrap;}
.footer-links a {text-decoration: none;
    color: #777;
    font-size: 14px;}
.footer-links a:hover {text-decoration: underline;}
.fast-facts-grid, .learn-more-grid {display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0;
    text-align: center;}
.fast-facts-grid div {display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;}
.fast-facts-grid img {height: 35vh;
    max-width: 90%;}
.fast-facts-grid h4, h5 {color: #444;
    margin: 10px 0 0;
    font-size: 28px;
    font-weight: bold;
    font-family: "Arial Narrow", Arial, sans-serif;}
.fast-facts-grid a {color: #0F9ED5;
    text-decoration: none;}
.fast-facts-grid a:hover {text-decoration: underline;}
.body-text p {color: #444;
    font-size: 28px;
    font-weight: normal;
    font-family: "Arial Narrow", Arial, sans-serif;}
.fast-facts-grid p {color: #0F9ED5;
    margin: 10px 0 0;
    font-size: 28px;
    font-weight: normal;
    font-family: "Arial Narrow", Arial, sans-serif;}
.history-grid {display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Optional: for responsive layout */
    gap: 30px; /* Space between items */}
.history-grid div {display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* <-- CHANGED from center to flex-start */
    text-align: center;}
.history-grid img {height: 35vh;
    max-width: 90%;}
.history-grid p {width: 18vw;
    max-width: 90%;
    align-self: center;
    color: #444;
    margin: 10px 0 0;
    font-size: 28px;
    font-weight: normal;
    font-family: "Arial Narrow", Arial, sans-serif;}
.culture-grid {display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Optional: for responsive layout */
    gap: 30px; /* Space between items */}
.culture-grid div {display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;}
.culture-grid img {width: 20vw;
    max-width: 90%;
    display: block;
    margin: 0 auto;}
.culture-grid h4 {color: #0F9ED5;
    margin: 10px 0 0;
    font-size: 28px;
    font-weight: bold;
    font-family: "Arial Narrow", Arial, sans-serif;
    text-align: left;}
.culture-grid p {color: #444;
    margin: 10px 0 0;
    font-size: 28px;
    font-weight: normal;
    font-family: "Arial Narrow", Arial, sans-serif;
    text-align: left;}
.culture-grid ul {list-style-position: outside;
    padding-left: 30px;
    margin: 10px 0 0;}
.culture-grid li {color: #444;
    font-size: 28px;
    font-weight: normal;
    font-family: "Arial Narrow", Arial, sans-serif;
    text-align: left;
    margin: 5px 0;}
.contact-grid {display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Optional: for responsive layout */
    gap: 30px; /* Space between items */}
.contact-grid div {display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;}
.contact-grid img {width: 20vw;
    max-width: 90%;
    display: block;
    margin: 0 auto;}
.contact-grid h4 {color: #0F9ED5;
    margin: 10px 0 0;
    font-size: 28px;
    font-weight: bold;
    font-family: "Arial Narrow", Arial, sans-serif;
    text-align: left;}
.contact-grid p {color: #444;
    margin: 10px 0 0;
    font-size: 28px;
    font-weight: normal;
    font-family: "Arial Narrow", Arial, sans-serif;
    text-align: left;}
.image-container {display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0; /* optional vertical spacing */}
.image-container img {width: 40vw;
    max-width: 100%;
    height: auto;}
.intro-grid {display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    margin: 0 auto;}
.intro-grid img {width: 20vw;
    max-width: 100%;}
.learn-more-grid {display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
    text-align: center;}
.learn-more-grid div {display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;}
.learn-more-grid video {width: 25vw;
    height: 24.3vh;
    max-width: 90%;}
.learn-more-grid img {width: 25vw;
    height: 20vh;
    max-width: 90%;}
.learn-more-grid a {color: #0F9ED5;
    text-decoration: none;}
.learn-more-grid a:hover {text-decoration: underline;}
.learn-more-grid p {color: #0F9ED5;
    margin: 10px 0 0;
    font-size: 28px;
    font-weight: normal;
    font-family: "Arial Narrow", Arial, sans-serif;}
.dprom-grid {display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
    text-align: center;}
.dprom-grid div {display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;}
.dprom-grid img {height: 25vh;
    max-width: 90%;}
.quality-grid {display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;}
.quality-grid div {display: flex;
    flex-direction: column;
    align-items: stretch; /* Stretch so child elements can control their own alignment */
    justify-content: flex-start;
    text-align: left;}
.quality-grid img {align-self: center; /* <-- Center the image only */
    height: 25vh;
    max-width: 90%;}
.quality-grid p {width: 23vw;
    max-width: 90%;
    align-self: center;
    color: #444;
    margin: 10px 0 0;
    font-size: 28px;
    font-weight: normal;
    font-family: "Arial Narrow", Arial, sans-serif;
    text-align: left;}
h1, h2 {position: relative;
    margin-bottom: 10px;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 32px;
    font-weight: bold;}
h1::after {content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4EA72E;
    font-family: "Arial Narrow", Arial, sans-serif;}
h2::after {content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4EA72E;
    font-family: "Arial Narrow", Arial, sans-serif;}
h2#fast-facts::after, h2#learn-more::after {background-color: #4EA72E;
    font-family: "Arial Narrow", Arial, sans-serif;}
h2.section-title::after {background-color: #4EA72E;
    font-family: "Arial Narrow", Arial, sans-serif;}
.mission-statement {text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0;
    font-family: "Arial Narrow", Arial, sans-serif;}
.video-section {display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0;}
.video-section img {width: 40vw;
    height: 40vh;
    max-width: 100%;}
.video-section video {width: 40vw;
    height: 40vh;
    max-width: 100%;}
.title-text {text-align: center;
    font-size: 40px;
    color: #4EA72E;
    font-family: "Arial Narrow", Arial, sans-serif;}
.centre-text {display: block;
    text-align: center;
    font-size: 28px;
    color: #444;
    font-family: "Arial Narrow", Arial, sans-serif;
    width: 90%;
    margin: 0 auto;}
.cta-section {background-color: #4CAF50; /* Green background */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    width: 95%;
    margin: 0 auto; /* Centers the section */}
.cta-text {flex-grow: 1;
    text-align: center;
    font-size: 28px;
    font-weight: bold;}
.cta-link {color: #0F9ED5; /* Blue */
    text-decoration: none;
    font-weight: bold;}
.cta-link:hover {text-decoration: underline;}
.introduction-text {display: block;
    font-size: 28px;
    color: #444;
    font-family: "Arial Narrow", Arial, sans-serif;
    margin: 0 auto;}
.title-row {display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #4EA72E;
    margin-bottom: 10px;
    padding-bottom: 5px;}
.title-left, .title-right {font-size: 28px;
    font-family: "Arial Narrow", Arial, sans-serif;
    margin: 0;}
.title-left {color: #4EA72E;}
.title-right {color: #0F9ED5;}
