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

    /* Navbar Styles */
    nav {
        background: linear-gradient(to left, #e8f5e9, #c8e6c9);
        padding: 1em;
        display: flex;
        justify-content: center;
        align-items: center;
        position: sticky;
        top: 0;
        transition: top 0.3s;
        box-shadow: 2px 2px 2px #4caf50;
        z-index: 100;
    }

    h2 {
        font-size: 50px;
    }

    h2, p, a, label {
        color: #4caf50;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }
    nav ul li {
        display: inline;
    }
    nav ul li a {
    position: relative;
    text-decoration: none;
    font-size: 1.1em;
    color: #4caf50;
    padding: 10px 15px;
    border: 2px dotted transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}
nav ul li a:hover {
    color: #4caf50;
    border-color: #4caf50;
}

    #home img {border-radius: 50%; width: 40%; box-shadow: 0 0 20px 5px #ff6f61; border: 5px dashed #ff6f61;}
.hover-effect {transition: all 0.3s ease-in-out; filter: grayscale(100%);}
.hover-effect:hover {transform: scale(1.2); filter: grayscale(0);}
    #about {background: linear-gradient(135deg, #1E88E5, #64B5F6); padding: 50px; color: #FFFFFF; text-align: center; border-radius: 20px; position: relative; overflow: hidden;}
#about::before {content: ''; position: absolute; top: -60px; left: 10%; width: 100px; height: 100px; background: rgba(255, 255, 255, 0.3); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); animation: floatDiamond 7s ease-in-out infinite;}
#about::after {content: ''; position: absolute; bottom: -50px; right: 20%; width: 130px; height: 130px; background: rgba(255, 255, 255, 0.3); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); animation: floatDiamond 5s ease-in-out infinite reverse;}
@keyframes floatDiamond {0%, 100%: {'transform': 'translateY(0)'}; 50%: {'transform': 'translateY(-30px)'};}
#about .gallery {display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px;}
#about .gallery img {width: 100%; border-radius: 10px; transition: transform 0.3s ease, opacity 0.3s ease;}
#about .gallery img:hover {transform: scale(1.1); opacity: 0.9;}
#about h2 {font-size: 42px; font-weight: bold; color: #BBDEFB; margin-bottom: 20px;}
#about p {font-size: 18px; line-height: 1.8; color: #96ccf8;}
    #requirements .low, #requirements .req {background: radial-gradient(circle, #FFCCF9, #FCC2FF, #F6C3FF, #FFC3A0); padding: 35px; border-radius: 50px; font-family: 'Comic Sans MS', cursive; font-size: 18px; color: #6A0572; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); transition: transform 0.3s ease, box-shadow 0.3s ease;}
#requirements .low:hover, #requirements .req:hover {transform: translateY(-10px); box-shadow: 0 8px 16px rgba(106, 5, 114, 0.5);}
    #contact {display: flex; flex-direction: column; align-items: center; justify-content: center; background: #ffe4e1; padding: 60px; margin: 30px auto; border-radius: 20px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);}
#contact .card-contact {display: flex; flex-direction: column; align-items: center; background: #fff0f5; padding: 40px; border-radius: 15px; box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.05); gap: 15px;}
#contact .card-contact label {color: #e91e63; font-size: 14px; font-weight: bold;}
button {background: #f06292; color: #fff; padding: 12px 30px; border-radius: 25px; font-size: 16px; cursor: pointer; transition: all 0.3s ease;}
button:hover {background: #ec407a; transform: scale(1.05); box-shadow: 0 4px 8px rgba(236, 64, 122, 0.2);}
    #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 #81c784;
        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;
        }
    }


    