
.wrapper{
     display:flex;
     flex-direction: column;
 }
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.subpage-header {
    background-color: #4CAF50; /* Green background */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.subpage-header h1 {
    margin: 0;
}

.subpage-nav {
    display: flex;
    align-items: center;
}

.subpage-nav a {
    color: white;
    margin: 0 1em;
    text-decoration: none;
}

.subpage-nav a:hover {
    text-decoration: underline;
}


{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.homepage-header {
    background-color: #4CAF50; /* Green background */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
}

.header-content {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 100%;
}

.main-nav a {
    color: white;
    margin: 0 1em;
    text-decoration: none;
}
header h1 {
    margin: 0;
}

.image-blocks {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    width: 100%;
}

.image-block {
    flex: 1;
    margin: 0;
}

.image-block img {
    width: 90%;
    height: auto;
    object-fit: cover;
    display: block;
    max-height: 100%; /* Adjust as needed */
}

.intro {
    text-align: center;
    margin: 2em auto;
    padding: 0 1em;
    max-width: 90%;
}

.subheadings {
    display: flex;
    justify-content: space-around;
    margin: 2em 0;
}

.subheading {
    flex: 1;
    text-align: center;
    margin: 0 0.5em;
}

.subheading h2 {
    margin-top: 0;
    color: #4CAF50; /* Green color for subheadings */
}

.subheading p {
    color: #333; /* Dark text color */
}

