/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styles */
body {
    font-family: 'Nunito', sans-serif; /* Use Nunito font */
    font-weight: 400; /* Light 300 variant */
    color: #888; /* Lighter shade of grey */
}

header {
    position: relative;
	background-image: url('stromy.jpg'); /* Background image */
    background-size: cover;
    background-position: center;
    padding: 80px 20px; /* Increased padding for better spacing */
	padding-bottom: 20px;
    text-align: center;
}

.title {
    font-family: 'Montserrat', sans-serif; /* Use Montserrat font for title */
    font-size: 64px; /* Set font size for title */
    font-weight: bold; /* Bold font weight */
}

.subtitle {
    font-family: 'Montserrat', sans-serif; /* Use Montserrat font for title */
    color: #4e7cc9; /* Blue-ish color for subtitle */
    font-size: 24px; /* Bigger subtitle */
    margin-bottom: 40px; /* Increased margin */
}

.pinehill {
    font-family: 'Montserrat', sans-serif; /* Use Montserrat font for title */
    color: black;
    font-size: 48px; /* Bigger subtitle */
    margin-bottom: 10px; /* Increased margin */
}

nav ul {
    list-style-type: none;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase; /* Capital letters */
}

nav a.active {
    color: #4e7cc9; /* Highlight current page with the same color as hyperlinks */
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
}

.main-container {
    max-width: 1024px; /* Limit the width of the content area */
    margin: 0 auto; /* Center the content on wider screens */
}

.header-content {
    position: relative;
    z-index: 1;
}

.text {
    flex-basis: 100%; /* Make text take up full width */
    margin-top: 20px; /* Increased margin top */
    line-height: 1.8; /* Increased line spacing */
}

.language-switcher {
    position: absolute;
    top: 10px; /* Adjust top position as needed */
    right: 10px; /* Adjust right position as needed */
}

.language-switcher a {
    display: inline-block;
    margin-left: 5px; /* Adjust margin between icons */
}

.language-switcher img {
    width: 24px; /* Adjust icon size as needed */
    height: 24px;
    cursor: pointer; /* Add cursor pointer for better usability */
}

.image {
    flex-basis: 100%; /* Make image take up full width */
    margin-top: 30px; /* Increased margin top */
    margin-bottom: 20px; /* Increased margin bottom */
    text-align: center; /* Center the image */
    vertical-align: baseline; /* Align image with baseline of text */
}

.image img {
    max-width: 100%; /* Ensure image doesn't overflow container */
}

h1 {
    font-size: 48px; /* Bigger typeface for title */
    color: #fff; /* White text color */
    margin-bottom: 10px;
}

main {
    padding: 20px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.image {
    flex-basis: 45%;
}

.image img {
    width: 100%;
    height: auto;
}

.pinehill-image img {
    max-width: 100%;
    width: auto;
    height: auto;
    flex: 0 0 auto; /* Don't allow the image to grow or shrink */
    margin-top: 30px;
    margin-right: 20px; /* Adjust the margin between the image and text */
}

.text, .full-width-text {
    flex-basis: 45%;
    margin-top: 20px;
    line-height: 1.8; /* Increased line spacing */
}

.pinehill-text {
    flex-basis: 60%; /* Don't allow the image to grow or shrink */
    margin-right: 60px; /* Adjust the margin between the image and text */
    margin-top: 20px;
    line-height: 1.8; /* Increased line spacing */
}

.text p, .full-width-text p{
    margin-bottom: 15px;
}

.text h2, .full-width-text h2 {
    color: #4e7cc9; /* Blue-ish color for headings */
    margin-bottom: 10px;
}

.text a, .full-width-text a {
    color: #4e7cc9; /* Blue-ish color for links */
    text-decoration: underline;
}

/* Additional text spanning across the whole page */
.full-width-text {
    width: 100%; /* Make the text span across the whole page */
    margin-top: 20px; /* Adjust top margin */
}

/* Adjust the size of the input fields and textareas */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px; /* Adjust padding as needed */
    font-size: 16px; /* Adjust font size as needed */
}

/* Add some margin between the input fields and textareas */
div > input[type="text"],
div > input[type="email"],
div > textarea {
    margin-bottom: 10px; /* Adjust margin as needed */
}
/* Style the submit button */
button[type="submit"] {
    padding: 12px 20px; /* Adjust padding as needed */
    font-size: 16px; /* Adjust font size as needed */
    background-color: #007bff; /* Example button background color */
    color: #fff; /* Example button text color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Add transition effect */
}

/* Hover effect for the button */
button[type="submit"]:hover {
    background-color: #0056b3; /* Example button background color on hover */
}
