.container {
    display: grid;
    grid-template-columns: 0.5fr 2fr 0.5fr;
    grid-template-rows: 0.3fr 1.7fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        ". header ."
        ". content .";
    max-width: 1280px;
    min-width: 360px;
}

.header {
    grid-area: header;
    max-width: 1280px;
    min-width: 360px;
}

/* Starting with ChatGPTs suggestions, will modify later */
.content {
    grid-area: content;
    padding: 20px; /* Adds space inside the content area */
    background-color: #f8f8f8; /* Light grey background for better readability */
    color: #333; /* Darker text color for contrast */
    font-family: 'Arial', sans-serif; /* A clean, readable font. Replace with your custom font later */
    line-height: 1.6; /* Improves readability of text */
    border-radius: 8px; /* Rounded corners for a softer look */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow to the content box */
    margin: 20px 0; /* Adds vertical space around the content box */
}

.content h3 {
    color: #2a7f62; /* A distinct color for headings */
    margin-bottom: 15px; /* Space after the heading */
    font-size: 1.5em; /* Larger font size for headings */
}

.content section {
    margin-bottom: 20px; /* Adds space after each section */
}

.content ul {
    padding-left: 20px; /* Indent for list items */
}

.content ul li {
    margin-bottom: 10px; /* Space between list items */
}

.content title {
    font-weight: bold; /* Makes title elements bold */
    display: block; /* Ensures titles are on their own line */
    margin-bottom: 10px; /* Space after the title */
    color: #1a4d80; /* A distinct color for titles */
    font-size: 1.2em; /* Slightly larger font size for titles */
}


/* SVG Header */
.header {
    grid-area: header;
    /* Other styles... */
    max-width: 768px; /* Maximum width of the SVG */
    max-height: 100px; /* Maximum height of the SVG */
    margin: 0 auto; /* Center the header content */
}

.header img {
    max-width: 100%; /* Ensures the SVG scales to fit the header */
    height: auto; /* Maintains the aspect ratio of the SVG */
}


/* media queries */
/* Media query for screens with a max-width of 800px */
@media screen and (max-width: 800px) {
    .container {
        grid-template-columns: 0fr 1fr 0fr; /* Collapses the outer columns */
    }
}