* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: #fff;
}

/* Header */
header {
    background-color: #2c3e50;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s;
}

header.sticky {
    background-color: #34495e;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f39c12;
}

/* Hero Section */
#hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

#hero .hero-content {
    max-width: 600px;
}

#hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.cta-btn {
    background-color: #e67e22;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #d35400;
}

.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Features Section */
#features {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
}

.feature-item {
    background-color: lightgreen;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 16px;
}

footer p {
    font-size: 14px;
}



/* Responsive Design */
@media (max-width: 768px) {
    #hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        max-width: 80%;
        margin-top: 20px;
    }

    #features {
        flex-direction: column;
    }

    .feature-item {
        width: 80%;
        margin: 10px auto;
    }
}

/* Contact Section */
#contact {
    margin-top: 80px;
    text-align: center;
    background-color: #1e1e1e;
    padding: 15px;
}

#contact h2 {
    color: #00ffcc;
    margin-bottom: 20px;
}

#contact p {
    color: #ddd;
    margin-bottom: 20px;
}

form {
    max-width: 600px;
    margin: 20px auto;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    color: #ddd;
    margin-bottom: 5px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #333;
    color: #ddd;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #00ffcc;
    color: #121212;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0ff;
}

ul {
    list-style-type: none;
    margin-top: 30px;
}

ul li {
    margin-bottom: 10px;
}

ul li a {
    color: #00ffcc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

ul li a:hover {
    color: #0ff;
}

/* Footer Section */
footer {
    background-color: #121212;
    color: #ddd;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

footer .social-links {
    margin-top: 20px;
}

footer .social-links a {
    margin: 0 15px;
    color: #00ffcc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #0ff;
}

/* Hamburger Menu for mobile */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 30px;
    height: 21px;
}

.hamburger .bar {
    background-color: #fff;
    height: 3px;
    width: 100%;
}

/* Mobile Navigation (hidden by default) */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide navigation links on mobile */
        width: 100%;
        background-color: #2c3e50;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px 0;
        text-align: center;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: flex; /* Show hamburger icon on mobile */
    }

    .nav-links.active {
        display: block; /* Show navigation links when active */
    }
}