nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;       
    background: white;
    border-bottom: 2px solid grey;           
}
body{
    background-color: rgba(139, 202, 132,0.3);
}
.name{
    margin: 0;
    color: #48a860;
    font-weight: bold;
}
.ele{
    display: flex;
    gap: 40px;
    cursor: pointer;
}
.navopt {
    padding: 8px 14px;
    border-radius: 8px;
        text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}
.navopt:hover{
    color: #3dab58;
    /* background-color: #48a860; */
    /* color: white; */
    background-color: rgba(72, 168, 96, 0.08); /* very transparent green */
    box-shadow: 0 0 12px rgba(72, 168, 96, 0.25);
}
.hero {
    margin-top: 40px;          /* Space below navbar */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;   /* Center image horizontally */
}
.hero h1{
    font-size: 4rem;
    margin-bottom: 10px;
    color: #276221;
}
.hero p{
    font-size: 2rem;
}
.hero img {
    width: 80%;                /* Responsive width */
    max-width: 1000px;         /* Prevent too large */
    border-radius: 12px;       /* Optional soft edges */
}
.longpara{
    font-size: 1.7rem;
    margin: 40px;
}

.info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 40px;
    gap: 40px;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-text p {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.info-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.info-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 7px;
}

.choose-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 40px;
    gap: 40px;
}

.choose-image {
    flex: 1;
}

.choose-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 7px;
}

.choose-text {
    flex: 1;
}

.choose-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.choose-text p {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 15px;
}
footer {
    background-color: #e6e6e6;
    text-align: center;
    padding: 2px;
    font-weight: bold;
    font-size: 1.5rem;
    color: #2f6f4e;
}