/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

/* Navigation Bar */
.navbar {
    background: #0099cc; /* Light Blue */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    color: #ff9933; /* Orange */
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-orange {
    background: #ff9933; /* Orange */
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.btn-orange:hover {
    background: #cc7a29;
}

/* Sections */
.section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
    background: white;
    margin-bottom: 20px;
    border-left: 5px solid #66cc66; /* Green */
}

.section h2 {
    color: #0099cc; /* Light Blue */
    margin-bottom: 20px;
}

.section h3 {
    color: #ff9933; /* Orange */
}

.section ul {
    margin-top: 10px;
    margin-left: 20px;
}

.section ul li {
    margin-bottom: 5px;
}

/* Content with image */
.content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.img-left {
    width: 300px;
    margin-right: 20px;
    margin-bottom: 20px;
}

/* Contact Section */
.contact p, .contact a {
    font-size: 1.1em;
}

/* Footer */
footer {
    background: #0099cc;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .img-left {
        width: 100%;
    }

    .nav-links {
        flex-direction: column;
        background: #0099cc;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        display: none;
    }

    .nav-links li {
        margin: 10px 0;
    }
}
