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

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: linear-gradient(to right, #e74c3c, #c0392b);
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #e74c3c 3px solid;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header h1 {
    margin: 0;
    padding: 10px 0;
}

header nav {
    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: #ddd;
    font-weight: bold;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero .btn {
    display: inline-block;
    color: #fff;
    background: #e74c3c;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hero .btn:hover {
    background: #c0392b;
}

.announcements, .content-section {
    padding: 20px 0;
    background: #fff;
    margin-bottom: 20px;
}

.announcements h3, .content-section h2, .content-section h3 {
    color: #e74c3c;
    text-align: center;
    margin-bottom: 20px;
}

.announcements ul {
    list-style: none;
    padding: 0;
}

.announcements li {
    background: #f9f9f9;
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid #e74c3c;
}

.content-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 5px 0;
}

/* Specific styles for About Us page */
.about-content h2 {
    text-align: center;
    color: #e74c3c;
    margin-bottom: 30px;
}

.about-content h3 {
    color: #c0392b;
    margin-top: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.about-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.about-content ul li {
    margin-bottom: 5px;
}

.about-content blockquote {
    background: #f9f9f9;
    border-left: 5px solid #e74c3c;
    padding: 10px 20px;
    margin: 15px 0;
    font-style: italic;
}

/* Specific styles for Journey page */
.journey-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.journey-item:nth-child(even) {
    flex-direction: row-reverse;
}

.journey-item img {
    width: 40%;
    margin: 0 20px;
    border-radius: 8px;
}

.journey-item div {
    width: 60%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav {
        margin-top: 20px;
    }

    header li {
        display: block;
        margin-bottom: 10px;
    }

    .hero h2 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .journey-item {
        flex-direction: column !important;
    }

    .journey-item img, .journey-item div {
        width: 100%;
        margin: 10px 0;
    }
}

.journey-item h3 {
    color: #e74c3c;
    margin-top: 0;
}

/* Specific styles for Contact page */
.contact-info {
    text-align: center;
    padding: 50px 0;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-image {
    text-align: center;
    margin-top: 30px;
}

.contact-image img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
}
