body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #ffecd2, #fcb69f);
    color: #333;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.hero h1 {
    color: #d35400;
    font-size: 1.5em;
}

.hero ul li {
    margin: 10px 0;
}

.highlight h2 {
    color: #e67e22;
    text-align: center;
}

.features ul li,
.reason ul li {
    margin: 10px 0;
}

blockquote {
    margin: 20px;
    padding: 20px;
    background: #fff5e6;
    border-left: 5px solid #e67e22;
    border-radius: 8px;
    font-style: italic;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #555;
    position: relative;
}

blockquote::before {
    content: "“";
    font-size: 2em;
    color: #e67e22;
    position: absolute;
    top: -10px;
    left: 10px;
}

blockquote::after {
    content: "”";
    font-size: 2em;
    color: #e67e22;
    position: absolute;
    bottom: -10px;
    right: 10px;
}

.price, .bundle-price {
    text-align: center;
    font-size: 1.5em;
    margin: 10px 0;
}

.btn {
    display: block;
    width: fit-content;
    margin: 20px auto;
    background: #e67e22;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #cf711f;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}
