/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo h1 {
    display: flex;
    align-items: center;
}

header ul {
    list-style: none;
    display: flex;
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
    max-height: 1000px; /* Default to show menu on desktop */
}

header ul li {
    margin: 0 15px;
}

header ul li a {
    color: #fff;
    text-decoration: none;
}

/* Burger Icon Styling */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.burger div {
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Hide Menu on Mobile by Default */
@media (max-width: 768px) {
    header nav {
        flex-direction: column;
        align-items: flex-start;
    }

    header ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        margin: 0;
        padding: 10px 0;
    }

    header ul li {
        margin: 10px 0;
        text-align: left;
    }

    .burger {
        display: flex;
    }

    .burger.active div:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.active div:nth-child(2) {
        opacity: 0;
    }

    .burger.active div:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    header ul.show {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta {
    background: #28a745;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

/* Content Section */
.content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .imgabout {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .imgabout {
        width: 50%;
    }
}
