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

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

/* Header Styles */
header {
    background: linear-gradient(to right, #e74c3c, #c0392b);
    color: #fff;
    padding: 1rem 0;
    border-bottom: 3px solid #e74c3c;
}

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

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 50px;
    margin-right: 10px;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
}

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

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #f9f9f9;
    border-bottom: 2px solid #fff;
}

/* Hero Section Styles */
#hero {
    background: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

#hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

#hero img {
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#hero .hero-content {
    max-width: 50%;
    text-align: left;
}

#hero h2 {
    color: #c0392b;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

#hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #c0392b;
}

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

section h2 {
    text-align: center;
    color: #e74c3c;
    margin-bottom: 30px;
    font-size: 2rem;
}

#upcoming-trips ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

#upcoming-trips ul li {
    background: #f9f9f9;
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid #e74c3c;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#our-impact .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

#our-impact img {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}
