:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.contact-info {
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
}

.contact-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .step-item:not(:last-child)::after {
        display: none;
    }

    .form-section {
        padding: 20px;
    }

    .hero-section {
        padding: 40px 0;
    }
}
