/* Reset and Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
}

/* Change made here */
.content-container {
    max-width: 900px;
    /* Removed margin: 0 auto; to allow for left alignment */
    padding: 0 50px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.logo {
    height: 40px;
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav .button {
    background-color: #e53935;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
}
.nav .buttonb {
    background-color: white;
    color: black;
    padding: 5px 10px;
    border-radius: 0px;
}
.nav .buttonc {
    background-color: white;
    color: black;
    padding: 2.5px 5px;
    border-radius: 0px;

}
/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 50px;
    color: white;
}

.hero-text {
    text-shadow: 1px 1px 2px #000;
}

.hero-text h1 {
    font-size: 3em;
    margin: 0;
}

.hero-text p {
    font-size: 1.2em;
}

.hero-text .learn-more {
    background-color: #e53935;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 10px;
}

/* Icon Blocks Section */
.icons-section {
    background-color: #f5f5f5;
    padding: 40px 0;
}

.icon-blocks {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 20px;
}

.icon-box {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: left;
    width: 350px;
    height: 150px;
}

.icon-box img {
    display: block;
    margin-bottom: 10px;
    height: 50px;
}

.icon-box p {
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 0.8em;
    font-weight: 400;
}

.icon-box h4 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.2em;
    font-weight: bold;
}

/* Content Sections */
.section-title {
    text-align: left;
    padding-left: 0;
    font-size: 2em;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 10px;
}

.about-us-text {
    padding-left: 0;
    margin-bottom: 20px;
}

/* Checklist Section */
.checklist-container {
    display: flex;
    justify-content: flex-start;
    padding-left: 0;
}

.checklist {
    display: block;
    width: 300px;
    text-align: left;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.checklist-item img {
    height: 20px;
    margin-right: 10px;
}

.submission-container {
    display: flex;
    justify-content: flex-start;
    padding-left: 25px;
}
.submission-imput {
    display: block;
    width: 300px
    text-alignt: center;
}
/*need to define item list, and image*/
/* Gallery */
.gallery {
    display: flex;
    justify-content: space-around;
    padding: 20px 50px 50px;
    gap: 20px;
}

.gallery-item {
    width: 25%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    color: white;
    padding: 20px 50px;
}

.footer-logo {
    height: 40px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.social-icons a {
    margin: 0 5px;
    color: white;
    text-decoration: none;
}

/* New Centered Section */
.centered-section {
    text-align: center;
    padding-left: 0;
}

.centered-content {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 0;
    text-align: center;
}

/* Reviews Section */
.reviews {
    display: flex;
    justify-content: space-around;
    padding: 20px 0 50px;
    gap: 20px;
}

.review-box {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: left;
    flex: 1;
}
.review-box a{
    font-weight: 700;
    font-size: 1em;
}
.review-box p {
    font-style: italic;
}

.review-name {
    font-weight: bold;
    margin-top: 10px;
}

.stars {
    color: gold;
    font-size: 1.2em;
}
/* Submission Form Styles */
.form-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.form-section {
    flex: 2; /* Takes up more space */
}

.contact-section {
    flex: 1; /* Takes up less space */
    padding-top: 50px;
    text-align: center;
    font-size: 1.2em;
}

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

label {
    margin-top: 15px;
    font-weight: bold;
}

input, textarea, button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't affect total width */
}

textarea {
    resize: vertical;
}

button {
    background-color: #e53935;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;
}
