body {
    font-family: 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #496b4a;
    color: #fff;
    text-align: center;
    padding: 20px;
}

h1 {
    margin: 0;
}

h4 {
    font-size: 12px;
    padding: 0;
    margin: 10px;
}

p {
    margin: 5px 0;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: auto;
    margin: 5px;
}

nav li {
    margin: 10px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

#introduction {
    flex-direction: row;
    justify-content: space-between;
}

section h2 {
    color: #2a482c;
    text-align: left;
}

#header {
    font-size: 35px;
}

ul {
    /* list-style-type: none; */
    padding: auto 50px;
}

li {
    margin: 5px 0;
}

.intro-image {
    width: 35%;
}

.intro-image img {
    border-radius: 8px;
    max-width: 100%; 
    height: auto;
}

.intro-text {
    width: 60%;
}

.container {
    text-align: center;
}

#image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}

.image-container {
    position: relative;
    height: auto;
    padding: 15px;
    margin: 5px;
    border: 1px solid #1c3a17;
}

.image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.image-std {
    width: 50%; 
    display: block; 
    margin-left: auto; 
    margin-right: auto;
}

.image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.image-toggle {
    text-align: center;
    padding-top: 15px;
}

.image-toggle > p {
    text-align: left;
}

.image-toggle .toggle-buttons {
    margin-bottom: 10px; 
}

.image-toggle input[type="radio"] {
    display: none;
}

.image-toggle label {
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin: 0 5px;
}

.image-toggle img {
    cursor: pointer;
    padding: 5px 10px;
    border: 0px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin: 0 auto;
    display: none; 
}

.image-toggle img:first-child {
    display: block; 
}

.image-toggle input[type="radio"]:checked + label {
    background-color: #ccc;
}

.toggled-image {
    display: none;
    height: 400px;
}











.text {
    color: #000; /* Text color */
    font-size: 16px; /* Text size */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease;
}

.title {
    font-weight: bold; /* Bold font for title */
}
