* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #0b6d27;
    color: white;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}
/*---------------------------------------*/
.navigation ul {
    display: flex;
    list-style: none;
}

.navigation ul li {
    margin: 0 15px;
}

.navigation ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.navigation ul li a:hover {
    color: #ffcc00;
}
/*---------------------------------------*/
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    border-radius: 2px;
}
/*---------------------------------------*/
@media (max-width: 768px) {
    .navigation ul {
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #0a6423;
        display: none;
        z-index: 100;
    }

    .navigation ul li {
        margin: 15px 0;
        text-align: center;
    }

    .navigation ul.nav-active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}
/*---------------------------------------*/
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("https://media.istockphoto.com/id/1049028724/photo/red-eyed-tree-frog-smile.jpg?s=612x612&w=0&k=20&c=mbgn5pLlHri8BV17jdw_nzzRBBJ9PC3IQryFADqHVqI=")
            center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}

.hero .btn {
    background: #ffcc00;
    color: #333;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #ffaa00;
}
/*---------------------------------------*/
main h2 {
    text-align: center;
    margin: 40px 0 20px 0;
    font-size: 32px;
}
/*---------------------------------------*/
.two-column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    gap: 40px;
}

.two-column .col {
    flex: 1;
}

.two-column img {
    width: 100%;
    border-radius: 10px;
}

.two-column ul {
    list-style: disc;
    padding-left: 20px;
    text-align: center;
    list-style-position: inside;
}
/*---------------------------------------*/
@media (max-width: 768px) {
    .two-column {
        flex-direction: column;
        text-align: center;
    }
}
/*---------------------------------------*/
.contact-section {
    background: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 25px;
}

.contact-section .btn {
    margin-top: 15px;
    background: #ffcc00;
    color: #333;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
/*---------------------------------------*/
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    color: #ffaa00;
}
