.calculator-info {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    font-family: 'Aclonica', sans-serif;
}

.calculator-info h3 {
    color: #f24141;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
}

.calculator-info ol,
.calculator-info ul {
    padding-left: 20px;
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.calculator-info li {
    margin-bottom: 6px;
}

/* Facts Box */
.facts-box {
    background: #fff6f6;
    border-left: 5px solid #f24141;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
}
.facts-box h4 {
    color: #f24141;
    margin: 0 0 8px;
    font-size: 16px;
}
.facts-box ul {
    list-style-type: "💡 ";
    padding-left: 20px;
    margin: 0;
}

/* CTA Box */
.cta-box {
    background: #f24141;
    color: #fff;
    text-align: center;
    padding: 40px;
    border-radius: 12px;
    margin-top: 20px;
}
.cta-box h4 {
    margin-top: 0;
    font-size: 18px;
}
.cta-box p {
    font-size: 14px;
    line-height: 1.4;
}
.cta-btn {
    background: #fff;
    color: #f24141;
    padding: 8px 15px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.cta-btn:hover {
    background: #ffeaea;
}
/* Enhanced Animated CTA Button */
.cta-btn.animated {
    background: #fff;
    color: #f24141;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 10px;
    margin-top: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(242, 65, 65, 0.3);
}

.cta-btn.animated:hover {
    background: #ffeaea;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 16px rgba(242, 65, 65, 0.4);
}

