body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff8f3;
    color: #4a2e5a;
    line-height: 1.6;
}

/* Banner */
.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fcebf7, #fff7e6);
    padding: 60px 40px;
}
.banner-left h1 {
    font-size: 50px;
    margin: 0;
    color: #7c3aa8;
}
.subtitle {
    font-size: 18px;
    margin-bottom: 20px;
}
.banner-left button {
    background: #b67ad2;
    border: none;
    color: white;
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}
.banner-right img {
    width: 300px;
}

/* Section */
.section {
    padding: 40px 20px;
    text-align: center;
}
h2 {
    font-size: 30px;
    color: #7c3aa8;
}

/* Grid */
.grid {
    display: grid;
    gap: 20px;
    margin-top: 25px;
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.box {
    background: #f7e7ff;
    padding: 25px;
    border-radius: 15px;
    font-weight: 600;
    border: 2px solid #e3c8ff;
}

/* Story */
.story-img {
    width: 280px;
    margin-top: 20px;
}

/* Target list */
.target-list {
    text-align: left;
    width: fit-content;
    margin: 0 auto;
    list-style: "✓ ";
    font-size: 18px;
}

/* Survey */
.survey {
    background: #f6dbff;
    border-radius: 15px;
    width: 90%;
    margin: 0 auto;
}
.survey-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #b67ad2;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

/* Footer */
footer {
    text-align: center;
    background: #f4d6ff;
    padding: 20px;
    margin-top: 40px;
}

/* Mobile */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        text-align: center;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .banner-right img {
        width: 200px;
        margin-top: 20px;
    }
}
