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

body {
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
    background-color: #fff;
    line-height: 1.6;
    max-width: 1600px; /* Constrains body content width */
    margin: 0 auto; /* Centers body content within the viewport */
}

/* Header and Navigation */
header {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
    color: #222;
    font-weight: 600;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 300;
}

header nav a {
    color: #333;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
}

header nav a:hover {
    color: #555;
}

p {
    margin: 0 0 1.5em;
    padding: 0;
}

/* Full-width Image Styling */
.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 40px;
}

/* Content Section Styling */
.content-section {
    margin: 20px auto;
    padding: 0 10%;
    max-width: 1200px;
    color: #555;
}

.content-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #222;
}

.content-section p {
    margin-bottom: 20px;
    margin-left: 20px;
}

.content-section ul {
	text-indent: 10px;
	margin-left: 30px;
}

.content-section ul li {
    margin-left: 10px; /* Moves bullet points inward */
    padding-bottom:6px;
}

/* Full-width 50/50 Split Section */
.split-section {
    display: flex;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto; /* Centers the split-section within its container */
}

/* Each 50% content block */
.split-content {
    flex: 1 1 50%; /* Each side takes up 50% of the container */
    padding: 0px;
    box-sizing: border-box;
    margin: 0 0;
}
.split-content div {
    padding: 1em;
    margin: 1em;
    text-align: left;
}

/* Image Styling for Split Sections */
.split-content img {
    width: 100%;
    height: auto;
}

/* Text Styling for Split Sections */
.split-content h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #222;
}

.split-content p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9em;
    max-width: 1200px; /* Keeps footer aligned with main content */
    margin: 0 auto;
}
