
    /* Color tone => Subtle Greens */
    /* General Styles */
    body {
        font-family: Arial, sans-serif;
        background-color: #ffffff; 
        margin: 0;
        padding: 0;
    }

    /* Navbar Styles */
    nav {
        background: linear-gradient(270deg, #eafaf1, #b5e48c);
        padding: 1em;
        display: flex;
        justify-content: center;
        align-items: center;
        position: sticky;
        top: 0;
        transition: top 0.3s;
        box-shadow: 2px 2px 2px #2ecc71;
        z-index: 100;
    }

    h2 {
        font-size: 50px;
    }

    h2, p, a, label {
        color: #1e8449;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }
    nav ul li {
        display: inline;
    }
    nav ul li a {
    display: inline-block;
    text-decoration: none;
    color: #1e8449;
    font-size: 1.2em;
    padding: 10px 20px;
    border-radius: 12px;
    background: #eafaf1;
    box-shadow: 0 0 10px #2ecc71;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
nav ul li a:hover {
    box-shadow: 0 0 20px #2ecc71, 0 0 40px #1e8449;
    transform: translateY(-3px);
}

    #home img {border-radius: 0; width: 50%; box-shadow: -5px -5px 15px #fff, 5px 5px 15px #aaa; border: 2px solid #ddd;}
.hover-effect {transition: transform 0.2s ease, box-shadow 0.2s ease;}
.hover-effect:hover {transform: translateY(-5px); box-shadow: -10px -10px 20px #fff, 10px 10px 20px #aaa;}
    #about {background: #282828; padding: 50px; color: #FFFFFF; text-align: center; position: relative; overflow: hidden;}
#about::before {content: ''; position: absolute; width: 50px; height: 50px; background: rgba(255, 0, 0, 0.3); border-radius: 50%; animation: expand-shape 5s ease-in-out infinite;}
#about::after {content: ''; position: absolute; bottom: 10%; right: 10%; width: 50px; height: 50px; background: rgba(0, 255, 0, 0.3); border-radius: 50%; animation: expand-shape 5s ease-in-out infinite; animation-delay: 2.5s;}
@keyframes expand-shape {0%, 100%: {'transform': 'scale(1)', 'opacity': '1'}; 50%: {'transform': 'scale(2)', 'opacity': '0.5'};}
#about .gallery {display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; position: relative; z-index: 1;}
#about .gallery img {width: 100%; border-radius: 10px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);}
#about .gallery img:hover {transform: translateX(10px) scale(1.05); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);}
#about h2 {font-size: 40px; color: #FF6F61; margin-bottom: 20px;}
#about p {font-size: 16px; color: #E0E0E0; line-height: 1.8;}
    #requirements .low, #requirements .req {background: #1C2331; padding: 40px; border-radius: 15px; font-family: 'Poppins', sans-serif; font-size: 18px; color: #E3F2FD; text-align: center; position: relative; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); overflow: hidden;}
#requirements .low::before, #requirements .req::before {content: '🌙'; position: absolute; top: -10px; right: 20px; font-size: 40px; color: rgba(255, 255, 255, 0.4); animation: moonBounce 3s infinite ease-in-out;}
@keyframes moonBounce {0%, 100%: {'transform': 'translateY(0)'}; 50%: {'transform': 'translateY(-10px)'};}
    #contact {display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, #ffc1a1, #ffe5d9); padding: 50px; margin: 30px auto; border-radius: 30px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); border: 4px solid #ff8a65;}
#contact .card-contact {display: flex; flex-direction: column; align-items: center; background: #ffffff; padding: 40px; border-radius: 20px; gap: 15px; box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.05);}
#contact .card-contact label {color: #e57373; font-size: 14px; font-family: "Comic Sans MS", cursive, sans-serif;}
button {background: linear-gradient(135deg, #ff8a65, #ffe5d9); color: #fff; padding: 10px 30px; border-radius: 25px; font-size: 16px; cursor: pointer; font-family: "Comic Sans MS", cursive, sans-serif; transition: all 0.3s ease;}
button:hover {background: linear-gradient(135deg, #ffe5d9, #ff8a65); transform: translateY(-3px); box-shadow: 0 4px 10px rgba(255, 138, 101, 0.3);}
    #menu-toggle {
        display: none;
    }

    /* Section Styles */
    section {
        padding: 2em;
        text-align: center;
    }

    /* Contact Form Styles */
    form {
        display: flex;
        flex-direction: column;
        gap: 1em;
        width: 70%;
    }
    form label {
        font-weight: bold;
    }
    form input, form textarea, form button {
        padding: 10px;
        border: 1px solid #27ae60;
        border-radius: 5px;
    }

    /* LINE Contact Styles */
    .line-contact {
        text-align: center;
        margin-top: 2em;
        width: 70%;
    }

    /* Media Query for Mobile */
    @media (max-width: 768px) {
        h2 {
            font-size: 30px;
        }
        nav ul {
            display: none;
            flex-direction: column;
        }
        #menu-toggle {
            display: block;
            margin-left: auto;
        }
        #contact .card-contact {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px 0px;
        }
        a {
            box-shadow: none;
        }
        #about .gallery {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 10px;
        }
    }


    