/* style.css */
body {
    margin: 0;
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    background-color: #fff;
    color: #333;
}

.hero {
    position: relative;
    background-image: url("img/img_d6e01128.png");
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 12px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.badges img {
    width: 80px;
    margin: 0 10px;
}

.cta-buttons {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 0 10px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-weight: bold;
}

.btn.green {
    background-color: #28a745;
}

.btn.gold {
    background-color: #d4af37;
}

.btn.red {
    background-color: #c0392b;
}
