body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #003366; /* Dark blue */
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

.hero h1 {
    font-size: 18px;
    color: #d2b48c; /* Darker shade of beige */
    font-family: Arial, sans-serif;
}

.hero-text {
    width: 40%;
    margin: auto;
    font-family: 'Merriweather', serif; /* A similar font to 'calluna' */
}

.hero h2, .hero p {
    font-size: 24px;
    color: white; /* White text for detailed description */
}

main {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    max-width: 960px;
    width: 100%;
}

.story {
    flex: 2 1 400px; /* 2/3 of the content space, minimum width of 400px */
    padding: 10px;
}

.contact-section {
    flex: 1 1 200px; /* 1/3 of the content space, minimum width of 200px */
    padding: 10px;
}

.email {
    font-size: 22px; /* Larger font size for email */
    font-weight: bold;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    width: 100%; /* Full width of the form container */
    padding: 10px;
    margin-bottom: 10px; /* Spacing between form fields */
}

button {
    background-color: #0275d8;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 10px; /* Space above the submit button */
}

@media (max-width: 768px) {
    .hero-text {
        width: 100%; /* Full width on smaller screens */
    }

    .content {
        flex-direction: column; /* Stack sections vertically on small screens */
    }

    .story, .contact-section {
        flex-basis: 100%;
    }
}

