:root {
    --accent-color: #f093fb;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}
/* Why Japan Cards - Updated: White background instead of gray gradient */
.why-japan {
    background: #fff; /* Clean white, no gray */
}
.icon-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.icon-card:hover::before {
    opacity: 1;
}
.icon-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-color);
}
.icon-card > * {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}
.icon-card:hover > * {
    color: white !important;
}
.icon-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.icon-card:hover .icon-wrapper {
    background: white;
    transform: rotateY(360deg);
}
.icon-card .icon-wrapper i {
    font-size: 2.5rem;
    color: white;
    transition: color 0.4s ease;
}
.icon-card:hover .icon-wrapper i {
    color: var(--primary-color);
}
.icon-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}
.icon-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    section {
        padding: 60px 0;
    }
}