body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f8f8;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #ff6f91; /* Pop pink */
    color: white;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: relative; /* For hamburger positioning */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

header h1 {
    font-family: 'Mochiy Pop P One', cursive;
    margin: 0;
    font-size: 2.5em;
    letter-spacing: 2px;
}

#main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#main-nav ul li {
    margin: 0 15px;
}

#main-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

#main-nav ul li a:hover {
    color: #ffe082; /* Pop yellow */
}

.hamburger {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1000;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

/* Hamburger animation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

#hero {
    background: linear-gradient(to right, #ff9a8b, #ff6a88); /* Gradient from orange to pink */
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(-30deg);
}

#hero h2 {
    font-family: 'Mochiy Pop P One', cursive;
    font-size: 2.8em;
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #ffe082; /* Pop yellow */
    color: #ff6f91; /* Pop pink */
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.btn:hover {
    background-color: #ffc107; /* Darker yellow */
    transform: translateY(-3px);
}

section {
    padding: 60px 0;
}

.section-bg {
    background-color: #fff3e0; /* Light peach */
}

h3 {
    font-family: 'Mochiy Pop P One', cursive;
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6f91; /* Pop pink */
    position: relative;
}

h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ffe082; /* Pop yellow */
    margin: 10px auto 0;
    border-radius: 2px;
}

#about p {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-item h4 {
    font-family: 'Mochiy Pop P One', cursive;
    color: #ff6f91; /* Pop pink */
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1em;
    line-height: 1.6;
}

#features ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#features ul li {
    background-color: white;
    margin-bottom: 15px;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1.1em;
    color: #555;
    width: 100%;
    max-width: 500px;
    position: relative;
    padding-left: 40px;
}

#features ul li::before {
    content: '★'; /* Cute star icon */
    color: #ff6f91; /* Pop pink */
    font-size: 1.2em;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.map-placeholder {
    background-color: #e0e0e0;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 1.2em;
    border-radius: 10px;
    margin-top: 30px;
}

#business-info table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#business-info th,
#business-info td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

#business-info th {
    background-color: #ff6f91; /* Pop pink */
    color: white;
    font-weight: bold;
    width: 30%;
}

#business-info tr:last-child td {
    border-bottom: none;
}

footer {
    background-color: #ff6f91; /* Pop pink */
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        padding: 10px 20px;
    }

    header h1 {
        font-size: 2em;
    }

    #main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 111, 145, 0.95); /* Pop pink with transparency */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%); /* Hide menu off-screen */
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    #main-nav.active {
        transform: translateX(0); /* Show menu */
    }

    #main-nav ul {
        flex-direction: column;
        text-align: center;
    }

    #main-nav ul li {
        margin: 20px 0;
    }

    #main-nav ul li a {
        font-size: 1.5em;
    }

    .hamburger {
        display: block; /* Show hamburger on mobile */
    }

    header nav ul {
        display: none; /* Hide desktop nav on mobile */
    }

    #hero h2 {
        font-size: 2em;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    #business-info th,
    #business-info td {
        display: block;
        width: 100%;
    }

    #business-info th {
        text-align: center;
    }
}