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

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

    h2 {
        font-size: 50px;
    }

    h2, p, a, label {
        color: #8e44ad;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }
    nav ul li {
        display: inline;
    }
    nav ul li a {
    text-decoration: none;
    color: #8e44ad;
    font-size: 1.2em;
    padding: 15px;
    box-shadow: 3px 3px 3px #8e44ad;;
    transition: all 0.3s ease;;
    border-radius: 50px;;
}
nav ul li a:hover {
    background: #9b59b6;
    font-weight: bold;
    transform: scale(1.1);;
}

    #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: #F8F4F0; padding: 50px; border-radius: 15px; color: #4A4A4A; font-family: 'Georgia', serif; text-align: center;}
#about .gallery {display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px;}
#about .gallery img {width: 100%; border-radius: 10px; border: 1px solid #DDD; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease;}
#about .gallery img:hover {transform: scale(1.05); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);}
#about h2 {font-size: 40px; font-weight: bold; color: #6B4226;}
#about p {font-size: 18px; line-height: 1.8; color: #5A5A5A;}
    #requirements .low, #requirements .req {background: linear-gradient(135deg, #FFD1DC, #FFF0F5); padding: 30px; border-radius: 20px; font-family: 'Comic Sans MS', cursive; font-size: 18px; color: #FF69B4; text-align: center; border: 3px solid #FFB6C1; box-shadow: 0 6px 10px rgba(255, 182, 193, 0.5); transition: transform 0.3s ease, box-shadow 0.3s ease;}
#requirements .low:hover, #requirements .req:hover {transform: scale(1.05); box-shadow: 0 8px 16px rgba(255, 105, 180, 0.8);}
    #contact {display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fbc2eb, #a1c4fd); padding: 60px; margin: 30px auto; border-radius: 30px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); border: 4px solid #fad0c4;}
#contact .card-contact {display: flex; flex-direction: column; align-items: center; background: #ffffff; padding: 50px; border-radius: 20px; gap: 20px; box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.1);}
#contact .card-contact label {color: #ff6f61; font-size: 14px; font-weight: bold; font-family: "Comic Sans MS", cursive, sans-serif;}
button {background: linear-gradient(135deg, #ff9a9e, #fbc2eb); color: #fff; padding: 12px 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, #fbc2eb, #ff9a9e); transform: scale(1.1); box-shadow: 0 4px 10px rgba(255, 154, 158, 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 #9b59b6;
        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;
        }
    }


    