* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
header {
    background: #e0f2fe; /* 淡い水色 */
    color: #0c4a6e;      /* 少し濃い文字色で読みやすく */
    padding: 20px 0;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    text-align: center; /* タイトル中央寄せ維持 */
}
.hero {
    background: linear-gradient(to right, #e0f2fe, #a5f3fc);
    color: #0c4a6e;
    padding: 60px 20px;
    font-size: 28px;
    border-radius: 0; /* コンテナ感を抑える */
}
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 18px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}
.cta-button:hover {
    background: #c0392b;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}
.feature {
    background: white;
    padding: 20px;
    margin: 10px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.disclaimer {
    margin-top: 50px;
}
footer {
    background: #f0f9ff; /* ヘッダーよりさらに淡い水色 */
    color: #0c4a6e;      /* ヘッダーと同じ文字色 */
    padding: 20px;
    margin-top: 50px;
}