/* Homeopathic Disclaimer/Notice Style - Matched to Reference Image */
.homeopathic-notice-card {
    background-color: #fff5f5;
    border: 1px solid #f5c2c7;
    border-radius: 12px;
    padding: 30px;
    margin: 40px auto;
    max-width: 1000px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.05);
    transition: all 0.3s ease;
}

.homeopathic-notice-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.08);
}

.notice-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #dc3545;
}

.notice-header i {
    font-size: 28px;
}

.notice-header span {
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 700;
    font-size: 22px;
}

.homeopathic-notice-card .notice-content {
    color: #333;
    line-height: 1.8;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .homeopathic-notice-card {
        padding: 20px;
        margin: 25px 15px;
    }
    .notice-header span {
        font-size: 18px;
    }
    .homeopathic-notice-card .notice-content {
        font-size: 0.95rem;
        text-align: justify;
    }
}
