body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero h1 {
    font-size: 2.8rem;
}

.cta {
    background: linear-gradient(135deg, #1e4fa1, #123c7a);
}

.card ul {
    padding-left: 18px;
}

.product-card {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Icon box */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    margin: 0 auto;
}

/* Green bullet list */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}

.feature-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #28a745; /* green dot */
    font-size: 12px;
    top: 2px;
}

.feature-box {
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

