/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header Styles */
header {
    background: linear-gradient(to right, #6dd5ed, #2193b0);
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}

header h1 {
    float: left;
    margin: 0;
    padding: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header a:hover {
    color: #cceeff;
    font-weight: bold;
}

/* Hero Section Styles */
#hero {
    min-height: 400px;
    background: #333 url('images/hero.jpg') no-repeat center center/cover;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#hero .hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
}

#hero h2 {
    font-size: 45px;
    margin-bottom: 10px;
}

#hero p {
    font-size: 20px;
}

/* Section Styles */
section {
    padding: 20px 0;
    border-bottom: #ccc 1px solid;
}

section h2 {
    text-align: center;
    color: #2193b0;
    margin-bottom: 20px;
}

section ul,
section ol {
    list-style-position: inside;
    padding-left: 0;
}

section ul li,
section ol li {
    margin-bottom: 10px;
}

/* Image Styles within sections */
section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Journey Page Specific Styles */
.mission-story {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mission-story h3 {
    color: #6dd5ed;
    margin-top: 0;
}

.mission-story img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Contact Page Specific Styles */
#contact-info p strong {
    color: #2193b0;
}

/* Footer Styles */
footer {
    padding: 20px;
    margin-top: 20px;
    color: #fff;
    background: linear-gradient(to right, #2193b0, #6dd5ed);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1,
    header nav {
        float: none;
        text-align: center;
    }

    header nav ul li {
        display: block;
        padding: 5px 0;
    }

    .container {
        width: 95%;
    }

    #hero h2 {
        font-size: 35px;
    }

    #hero p {
        font-size: 18px;
    }
}
