@import url(base-style.css);
@import url(slide-show.css);

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 0 2rem;
}

/* === Header === */
.header {
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.header .label {
    font-size: 1.2rem;
    color: #9d9d9d;
    margin-bottom: 0.5rem;
}

/* === Fitur Section === */
.features {
    margin: 3rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    padding-left: 2rem;
    position: relative;
}

.feature-list li strong {
    color: #FF5E5B;
}

/* Ikon dengan Emoji */
.feature-list li::before {
    content: "✨"; /* Ganti dengan emoji lain: 🖋️ ✅ 🔒 */
    position: absolute;
    left: 0;
    top: 0;
}

/* === CTA Section === */
.cta {
    text-align: center;
    background: linear-gradient(135deg, #1E3A8A 0%, #0F4C75 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.cta h2 {
    margin-top: 0;
}

.cta-button {
    display: inline-block;
    background-color: #FFFFFF;
    color: #1E3A8A;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.highlight-red {
    color: #FF5E5B;
    font-weight: bolder;
}

.highlight-yellow {
    color: #dad269;
    font-weight: bolder;
}