body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #f8f5e9;
    color: #333; /* Text color */

}

.content-container {
    display: flex;
    justify-content: space-between; /* Space between text and image */
    align-items: flex-start; /* Align items to the top */
    padding: 20px; /* Padding around the container */
}

.text-section {
    flex: 1; /* Allow text section to grow */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: flex-start; /* Align text to the top */
    align-items: flex-start; /* Align text to the left */
    text-align: left; /* Align text to the left within the text section */
    background-color: #f8f8f8; /* Light background color */
    padding: 30px; /* Increase padding for more space */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Slightly larger shadow for depth */
    margin-right: 20px; /* Space between text sections */
}




.image-section {
    flex: 1; /* Allow image section to grow */
    display: flex;
    justify-content: flex-end; /* Align image to the right */
}

.responsive-image {
    width: 100%; /* Image takes full width of the section */
    height: auto; /* Maintain aspect ratio */
    max-width: 500px; /* Set a max width for your image */
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.button {
    display: flex; 
    justify-content: flex-start; /* Center horizontally */
    margin-top: 20px; /* Space above the button */
}

.button {
    display: inline-block; /* Make it inline-block */
    padding: 10px 20px; /* Padding for button */
    background-color: #575757; /* Background color */
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    font-size: 1rem; /* Font size */
}


h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem; /* Adjust size as needed */
    font-weight: bold;
    margin-bottom: 0.5rem;
}
 

p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.6rem; /* Adjust size as needed */
    font-weight: normal;
    margin-bottom: 1.5rem;
}

body, html {
    height: 100%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    font: 400 15px / 1.8 "Lato", sans-serif;
    color: #777;
}

.navbar {
    list-style-type: none; 
    padding: 20px; 
    margin: 0 auto;
    width: 100%; 
    background-color: #333;
    display: flex;
    justify-content: center;
    font-size: 1.6rem;
    border-bottom: 2px solid #333;
}

.navbar li {
    margin: 0 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #FFD700;
}
  
  
  